tricoteuses-legifrance/svelte.config.js

18 lines
417 B
JavaScript
Raw Normal View History

import adapter from "@sveltejs/adapter-node"
2023-12-20 11:49:21 +01:00
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-01-31 16:26:37 +01:00
kit: {
adapter: adapter({
precompress: true,
}),
},
2023-01-31 16:12:09 +01:00
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
2022-08-09 10:44:30 +02:00
// for more information about preprocessors
2023-08-05 21:50:39 +02:00
preprocess: [vitePreprocess({})],
2022-08-09 10:44:30 +02:00
}
2022-08-09 10:44:30 +02:00
export default config