2024-06-16 18:40:51 +02:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import mkcert from 'vite-plugin-mkcert'
|
2024-05-12 15:30:17 +02:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2024-06-16 18:40:51 +02:00
|
|
|
server: { https: true }, // Not needed for Vite 5+
|
|
|
|
|
plugins: [ mkcert() ]
|
|
|
|
|
})
|