Files
ga-commission-system/ga-frontend/vite.config.ts
T
ysukkyu 88e14edffd 1
2026-05-14 18:14:49 +09:00

26 lines
454 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'node:path';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8082',
changeOrigin: true,
},
},
},
build: {
outDir: 'dist',
sourcemap: false,
},
});