auditforge / frontend /vite.config.ts
Kaballas's picture
initialize project structure with essential configurations and components
56b6519
raw
history blame contribute delete
244 Bytes
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});