trifid/tfweb/svelte.config.js

22 lines
470 B
JavaScript
Raw Normal View History

2023-02-20 17:01:32 +00:00
import adapter from '@sveltejs/adapter-static';
2023-02-20 04:23:19 +00:00
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
2023-02-20 17:01:32 +00:00
adapter: adapter({
pages: 'build',
assets: 'build',
fallback: null,
precompress: false,
strict: true
})
2023-02-20 04:23:19 +00:00
}
};
export default config;