mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 19:43:03 +02:00
7 lines
186 B
TypeScript
7 lines
186 B
TypeScript
import { defineConfig } from 'vite'
|
|
import mkcert from 'vite-plugin-mkcert'
|
|
|
|
export default defineConfig({
|
|
server: { https: true }, // Not needed for Vite 5+
|
|
plugins: [ mkcert() ]
|
|
}) |