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

17 lines
301 B
JavaScript
Raw Permalink 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: {
2024-03-11 20:29:02 -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;