2023-02-17 10:22:14 -05:00
|
|
|
import adapter from '@sveltejs/adapter-static';
|
2023-02-17 15:43:26 -05:00
|
|
|
import preprocess from 'svelte-preprocess';
|
2023-02-17 10:22:14 -05:00
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
const config = {
|
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
// for more information about preprocessors
|
2023-02-17 15:43:26 -05:00
|
|
|
preprocess: preprocess({
|
|
|
|
scss: {
|
|
|
|
prependData: `@import './src/app.scss';`
|
|
|
|
}
|
|
|
|
}),
|
2023-02-17 10:22:14 -05:00
|
|
|
|
|
|
|
kit: {
|
|
|
|
adapter: adapter({
|
|
|
|
pages: 'build',
|
|
|
|
assets: 'build',
|
|
|
|
fallback: null,
|
|
|
|
precompress: false,
|
|
|
|
strict: true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|