mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 16:23:11 +02:00
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react-swc';
|
|
import mkcert from 'vite-plugin-mkcert'
|
|
|
|
export default defineConfig({
|
|
server: { https: true }, // Not needed for Vite 5+
|
|
plugins: [ react(), mkcert() ]
|
|
}) |