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
|
|
|
|
2023-07-12 00:50:01 +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
|
|
|
};
|
2023-07-12 00:50:01 +01:00
|
|
|
|
2023-07-24 11:05:08 +01:00
|
|
|
export default config;
|