mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
15 lines
330 B
TypeScript
15 lines
330 B
TypeScript
import react from '@vitejs/plugin-react'
|
|
import { defineConfig } from 'vite'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 3000,
|
|
// https: {
|
|
// key: fs.readFileSync('cert/portal-key.pem'),
|
|
// cert: fs.readFileSync('cert/portal-cert.pem'),
|
|
// }
|
|
}
|
|
})
|