35 lines
641 B
TypeScript
35 lines
641 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import uni from "@dcloudio/vite-plugin-uni";
|
||
|
import vueJsx from "@vitejs/plugin-vue-jsx";
|
||
|
import { resolve } from "path"
|
||
|
// import Components from 'unplugin-vue-components/vite'
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
build: {
|
||
|
target: "es6"
|
||
|
},
|
||
|
resolve: {
|
||
|
alias: [
|
||
|
{
|
||
|
find: "@",
|
||
|
replacement: resolve(__dirname, 'src')
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
server: {
|
||
|
port: 1314,
|
||
|
// 选项写法
|
||
|
proxy: {
|
||
|
'/pag': {
|
||
|
target: 'https://cdn.tmui.design',
|
||
|
changeOrigin: true,
|
||
|
rewrite: (path) => path.replace(/^\/api/, '/api')
|
||
|
},
|
||
|
}
|
||
|
},
|
||
|
plugins: [
|
||
|
uni(),
|
||
|
vueJsx()
|
||
|
]
|
||
|
});
|