Skyss-Live/vite.config.ts

19 lines
468 B
TypeScript
Raw Normal View History

2023-10-11 14:57:53 +02:00
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import basicSsl from '@vitejs/plugin-basic-ssl'
2023-10-12 00:21:17 +02:00
import { svelteInspector } from '@sveltejs/vite-plugin-svelte-inspector'
2023-10-11 14:57:53 +02:00
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
svelte(),
//basicSsl(),
2023-10-12 00:21:17 +02:00
/*svelteInspector({
showToggleButton: 'always',
toggleButtonPos: 'top-right',
openKey: 'meta-shift'
})*/
2023-10-11 14:57:53 +02:00
],
base: "",
})