sheer / vite.config.ts
Daniele Luisetto
Update vite.config.ts
0330e73 unverified
raw
history blame
249 Bytes
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});