75 lines
1.8 KiB
JavaScript
75 lines
1.8 KiB
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import UnoCSS from 'unocss/vite'
|
|
import path from 'path'
|
|
import Components from 'unplugin-vue-components/vite';
|
|
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
UnoCSS(),
|
|
Components({
|
|
resolvers: [
|
|
AntDesignVueResolver({
|
|
importStyle: false, // css in js
|
|
}),
|
|
],
|
|
}),
|
|
],
|
|
server:{
|
|
open: true,
|
|
proxy: {
|
|
'/api/v1/products': {
|
|
// target: 'https://ht.timerzz.com:20443/',
|
|
target: 'http://192.168.31.163:31828/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
'/api/v1/push': {
|
|
target: 'https://ht-dev.timerzz.com:20443/',
|
|
// target: 'http://192.168.31.55:2280/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
'/api/v1/pushers': {
|
|
target: 'https://ht-dev.timerzz.com:20443/',
|
|
// target: 'http://192.168.31.55:2280/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
'/api/v1/watchers': {
|
|
target: 'https://ht-dev.timerzz.com:20443/',
|
|
// target: 'http://192.168.31.55:2280/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
'/api/v1/proxies': {
|
|
target: 'https://ht-dev.timerzz.com:20443/',
|
|
// target: 'http://192.168.31.55:2280/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
'/api/v1': {
|
|
target: 'https://ht.timerzz.com:20443/',
|
|
// target: 'http://192.168.31.55:2280/',
|
|
changeOrigin: true,
|
|
secure: false,
|
|
ws: true,
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, "./src")
|
|
}
|
|
}
|
|
})
|