mirror of
https://gitlab.com/little-lines/frontend.git
synced 2024-11-10 09:34:25 +00:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
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')
|
|
}
|
|
}
|
|
})
|