ca-grow-ops-manager/frontend/vite.config.ts
fullsizemalt 609e7cb23c
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run
chore(frontend): Configure path aliases and install types
- Added @ alias path resolution in vite.config.ts
- Installed @types/node and framer-motion
2025-12-19 17:13:46 -08:00

20 lines
453 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
import { fileURLToPath } from 'url'
const __dirname = path.dirname(fileURLToPath(import.meta.url))
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
host: '0.0.0.0',
port: 80,
}
})