mirror of
https://github.com/harivansh-afk/Resume-website.git
synced 2026-04-15 11:02:20 +00:00
12 lines
240 B
JavaScript
12 lines
240 B
JavaScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
})
|