mirror of
https://github.com/Jinnrry/PMail.git
synced 2025-02-20 11:43:09 +08:00
32 lines
747 B
JavaScript
32 lines
747 B
JavaScript
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
import { defineConfig } from 'vite'
|
||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||
|
import Components from 'unplugin-vue-components/vite'
|
||
|
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
|
||
|
import vue from '@vitejs/plugin-vue'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [
|
||
|
vue(),
|
||
|
AutoImport({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
Components({
|
||
|
resolvers: [ElementPlusResolver()],
|
||
|
}),
|
||
|
],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
}
|
||
|
},
|
||
|
server: {
|
||
|
cors: true,
|
||
|
proxy: {
|
||
|
"/api": "http://127.0.0.1/",
|
||
|
"/attachments":"http://127.0.0.1/"
|
||
|
}
|
||
|
}
|
||
|
})
|