This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/vite.config.js

14 lines
261 B
JavaScript
Raw Permalink Normal View History

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