Files
gg-backend/frontend/vite.config.ts
T

14 lines
235 B
TypeScript
Raw Normal View History

2026-05-26 15:48:01 +05:30
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
2026-03-12 17:56:52 +05:30
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
2026-05-26 15:48:01 +05:30
'@': path.resolve(__dirname, './src'),
2026-03-12 17:56:52 +05:30
},
},
});