bw-hspc-contest-env/web/svelte.config.js

20 lines
366 B
JavaScript
Raw Normal View History

2023-04-26 12:20:01 -04:00
import adapter from '@sveltejs/adapter-node';
2023-12-19 16:58:34 -05:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
2023-04-26 12:20:01 -04:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
adapter: adapter(),
alias: {
'@extensionWeb/*': '../shared/extensionWeb/*'
}
2023-08-26 12:30:22 -04:00
},
vitePlugin: {
inspector: true
2023-04-26 12:20:01 -04:00
}
};
export default config;