| 123456789101112131415161718192021222324 |
- import { defineConfig } from 'vite'
- import vue from '@vitejs/plugin-vue'
- import path from 'path'
- export default defineConfig({
- plugins: [
- vue()
- ],
- resolve: {
- alias: {
- '@': path.resolve(__dirname, 'src')
- }
- },
- server: {
- host: true,
- proxy: {
- '/cloud': {
- target: 'https://xxoo365.top/cloud',
- changeOrigin: true,
- rewrite: path => path.replace(/^\/cloud/, '')
- }
- }
- }
- })
|