mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
643442e1a5
* fixup site * fix docs versions * test ci * test ci some more * test ci some more * test ci some more * asd * asd * asd * asd * asd * asd * asd * asd * asd * test * fix * add changeset * fix * fix * fix * test ci * test ci * test ci * test ci * test ci * test ci * test ci * test ci * test ci * notebook ci * notebook ci * more ci * more ci * update changeset * update changeset * update changeset * fix site * fix * fix * fix * fix * fix ci * render mising pages * remove changeset * fix path * fix workflows * fix workflows * fix workflows * fix comment * tweaks * tweaks --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
32 lines
678 B
JavaScript
32 lines
678 B
JavaScript
import adapter from "@sveltejs/adapter-static";
|
|
import { vitePreprocess } from "@sveltejs/kit/vite";
|
|
import _version from "./src/lib/json/version.json" assert { type: "json" };
|
|
|
|
const version = _version.version;
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
// for more information about preprocessors
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
prerender: {
|
|
entries: [
|
|
"*",
|
|
`/${version}/docs`,
|
|
`/${version}/guides`,
|
|
`/main/docs`,
|
|
`/main/guides`
|
|
// "/main/docs/interface"
|
|
]
|
|
},
|
|
files: {
|
|
lib: "src/lib"
|
|
},
|
|
adapter: adapter()
|
|
}
|
|
};
|
|
|
|
export default config;
|