Spaces:
Runtime error
Runtime error
File size: 353 Bytes
246efdb a83681b cb92d2b 246efdb cb92d2b 246efdb cb92d2b 246efdb cb92d2b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter({
pages: "public",
assets: "public",
fallback: undefined,
precompress: false,
strict: true,
}),
},
};
export default config;
|