disinformation-quest/vite.config.ts
gpt-engineer-app[bot] 5b43f5325b Rebuild application structure
Refactor and reorganize the entire application codebase to improve maintainability and performance.
[skip gpt_engineer]
2024-12-15 12:08:58 +00:00

15 строки
279 B
TypeScript

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