This commit is contained in:
2026-05-26 12:27:23 +02:00
parent 39e23546e8
commit ffd8b3e5c9
26 changed files with 1514 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import basicSsl from '@vitejs/plugin-basic-ssl';
// `basicSsl` generates a self-signed certificate so the dev server and
// `vite preview` both serve over HTTPS out of the box.
export default defineConfig({
plugins: [vue(), basicSsl()],
server: {
host: true,
port: 5173,
},
preview: {
host: true,
port: 4173,
},
});