website/svelte.config.js

19 lines
343 B
JavaScript
Raw Permalink Normal View History

2023-06-04 22:25:15 +00:00
import preprocess from "svelte-preprocess";
2023-06-23 12:51:54 +00:00
import adapter from '@sveltejs/adapter-node';
2023-06-04 22:25:15 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
2023-06-23 12:51:54 +00:00
adapter: adapter()
2023-06-04 22:25:15 +00:00
},
preprocess: [
preprocess({
scss: {
prependData: '@use "src/variables.scss" as *;',
},
}),
],
};
2023-06-23 12:51:54 +00:00
export default config;