chore: move specs to docs folder (#20136)

This commit is contained in:
Kevin Grüneberg
2024-01-03 18:54:23 +01:00
committed by GitHub
parent 8e7f30db73
commit 129b3d927a
129 changed files with 1572 additions and 344 deletions

View File

@@ -51,7 +51,7 @@ export function useCommonSections(commonSectionsFile: string) {
const commonSections = await import(
/* webpackInclude: /common-.*\.json$/ */
/* webpackMode: "lazy" */
`~/../../spec/${commonSectionsFile}`
`~/spec/${commonSectionsFile}`
)
setCommonSections(commonSections.default)
}
@@ -80,7 +80,7 @@ export function useSpec(specFile?: string) {
const spec = await import(
/* webpackInclude: /supabase_.*\.ya?ml$/ */
/* webpackMode: "lazy" */
`~/../../spec/${specFile}`
`~/spec/${specFile}`
)
setSpec(spec.default)
}