Files
h2h-prototype/frontend/vite.config.ts
2026-01-02 10:43:20 -06:00

17 lines
289 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
host: true,
port: 5173,
},
})