2022-12-27 06:57:53 +00:00
|
|
|
import adapter from '@sveltejs/adapter-vercel';
|
2022-12-25 18:52:36 +00:00
|
|
|
import { vitePreprocess } from '@sveltejs/kit/vite';
|
2022-01-28 05:27:12 +00:00
|
|
|
|
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
|
|
|
const config = {
|
2022-12-25 18:52:36 +00:00
|
|
|
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
|
|
|
|
// for more information about preprocessors
|
2022-12-01 18:29:24 +00:00
|
|
|
preprocess: [
|
2022-12-25 18:52:36 +00:00
|
|
|
vitePreprocess({
|
|
|
|
|
postcss: true,
|
|
|
|
|
}),
|
2022-12-01 18:29:24 +00:00
|
|
|
],
|
2022-07-07 19:32:55 +00:00
|
|
|
kit: {
|
2022-07-07 22:56:15 +00:00
|
|
|
adapter: adapter(),
|
2022-07-07 19:32:55 +00:00
|
|
|
alias: {
|
|
|
|
|
$root: './src'
|
|
|
|
|
},
|
2022-09-13 22:14:55 +00:00
|
|
|
},
|
|
|
|
|
vitePlugin: {
|
|
|
|
|
experimental: {
|
|
|
|
|
inspector: {
|
|
|
|
|
toggleKeyCombo: 'control-alt-shift',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-01-28 05:27:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default config;
|