boredgame/svelte.config.js

29 lines
551 B
JavaScript
Raw Normal View History

import adapter from '@sveltejs/adapter-auto';
2022-01-28 05:27:12 +00:00
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({
postcss: true
})
],
kit: {
adapter: adapter(),
alias: {
$root: './src'
},
},
vitePlugin: {
experimental: {
inspector: {
toggleKeyCombo: 'control-alt-shift',
},
},
},
2022-01-28 05:27:12 +00:00
};
export default config;