This commit is contained in:
Kiran Surendran Pankan
2025-04-07 12:10:50 +05:30
parent 54117486e1
commit 4ed9dcee71
+6
View File
@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
}
})