Select Git revision
svelte.config.js

Jonas Zohren authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
svelte.config.js 449 B
import adapter from '@sveltejs/adapter-node';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: [
preprocess({
scss: {
prependData: '@use "src/variables.scss" as *;'
}
})
],
kit: {
adapter: adapter({
precompress: true
})
}
};
export default config;