2023-07-14 22:07:00 +07:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2023-07-15 15:03:08 +07:00
|
|
|
import path from 'path'
|
2023-07-14 22:07:00 +07:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [vue()],
|
2023-07-15 15:03:08 +07:00
|
|
|
resolve: {
|
|
|
|
alias:{
|
|
|
|
'@' : path.resolve(__dirname, './src')
|
|
|
|
}
|
|
|
|
}
|
2023-07-14 22:07:00 +07:00
|
|
|
})
|