36 lines
762 B
Vue
36 lines
762 B
Vue
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vitePluginImport from 'vite-plugin-babel-import';
|
|
import path from 'path'
|
|
|
|
const baseUrl = {
|
|
development: './',
|
|
beta: './',
|
|
release: './'
|
|
}
|
|
|
|
// https://vitejs.dev/config/
|
|
export default ({ mode }) => defineConfig({
|
|
plugins: [
|
|
vue()
|
|
],
|
|
base: baseUrl[mode],
|
|
resolve: {
|
|
alias: {
|
|
'~': path.resolve(__dirname, './'),
|
|
'@': path.resolve(__dirname, 'src')
|
|
}
|
|
},
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
// target: 'http://whh.shikicc.com:52189',
|
|
target: 'http://192.168.2.6:6688',
|
|
changeOrigin: true,
|
|
rewrite: path => path.replace(/^\/api/, '')
|
|
// rewrite: path => path.replace(/^\//, '')
|
|
}
|
|
}
|
|
}
|
|
})
|