nextcloud-notes-desktop/vite.config.js
Daniel 46aee2d313
Some checks failed
Release / Build Linux (push) Has been cancelled
Release / Build macOS (push) Has been cancelled
Release / Build Windows (push) Has been cancelled
Initialize Nextcloud Notes desktop app
2026-05-15 16:24:17 +02:00

10 lines
188 B
JavaScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: true,
},
})