owlboard-svelte/svelte.config.js

17 lines
310 B
JavaScript
Raw Normal View History

2023-07-24 12:23:16 +01:00
import adapter from '@sveltejs/adapter-static';
2023-07-24 11:05:08 +01:00
import { vitePreprocess } from '@sveltejs/kit/vite';
2023-06-12 19:02:49 +01:00
const config = {
2023-07-24 11:05:08 +01:00
preprocess: vitePreprocess(),
2023-07-07 11:27:28 +01:00
kit: {
2023-07-24 12:23:16 +01:00
adapter: adapter({
pages: 'build',
assets: 'build',
precompress: true,
strict: true
})
2023-07-07 11:27:28 +01:00
}
2023-06-12 19:02:49 +01:00
};
export default config;