tricoteuses-legifrance/svelte.config.js

22 lines
420 B
JavaScript
Raw Normal View History

import adapter from "@sveltejs/adapter-node"
2022-08-09 10:44:30 +02:00
import preprocess from "svelte-preprocess"
/** @type {import('@sveltejs/kit').Config} */
const config = {
2022-08-09 10:44:30 +02:00
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
postcss: true,
}),
],
2022-08-09 10:44:30 +02:00
kit: {
adapter: adapter({
precompress: true,
}),
2022-08-09 10:44:30 +02:00
},
}
2022-08-09 10:44:30 +02:00
export default config