Files
cocapwya/frontend/vite.config.ts
2025-11-05 01:30:03 -08:00

14 lines
304 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { fileURLToPath, URL } from 'node:url'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
server: { port: 3000 },
})