change folder location

This commit is contained in:
SRP-mango 2023-07-20 14:18:53 +07:00
parent 2aacb390f8
commit 3547bddf17
22 changed files with 1272 additions and 1370 deletions

13
vite.config.js Normal file
View file

@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias:{
'@' : path.resolve(__dirname, './src')
}
}
})