Spaces:
Runtime error
Runtime error
File size: 402 Bytes
51669fc |
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/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess({ postcss: true }),
kit: {
adapter: adapter({
pages: 'public',
assets: 'public',
fallback: undefined,
precompress: false,
strict: true
})
}
};
export default config;
|