30 lines
617 B
TypeScript
30 lines
617 B
TypeScript
|
/*
|
||
|
* @LastEditors: John
|
||
|
* @Date: 2024-07-13 10:21:58
|
||
|
* @LastEditTime: 2024-07-15 11:02:27
|
||
|
* @Author: John
|
||
|
*/
|
||
|
import { defineConfig } from "vite";
|
||
|
import react from "@vitejs/plugin-react";
|
||
|
import path from "path";
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
server: {
|
||
|
host: "192.168.10.167",
|
||
|
proxy: {
|
||
|
"/dev": {
|
||
|
target: "http://192.168.10.100:8096",
|
||
|
changeOrigin: true,
|
||
|
rewrite: (path) => path.replace(/^\/dev/, ""),
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [react()],
|
||
|
resolve: {
|
||
|
alias: {
|
||
|
"@": path.resolve(__dirname, "./src"),
|
||
|
},
|
||
|
},
|
||
|
css: {},
|
||
|
});
|