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

17 lines
291 B
JavaScript
Raw Normal View History

2023-04-26 12:20:01 -04:00
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
preprocess: vitePreprocess(),
kit: {
2023-08-23 22:06:53 -04:00
adapter: adapter()
2023-08-26 12:30:22 -04:00
},
vitePlugin: {
inspector: true
2023-04-26 12:20:01 -04:00
}
};
export default config;