pioneer-share/vite.config.ts

17 lines
329 B
TypeScript
Raw Permalink Normal View History

2024-06-06 20:25:29 +08:00
/*
* @LastEditors: John
* @Date: 2024-05-22 18:06:14
* @LastEditTime: 2024-06-05 17:41:40
* @Author: John
*/
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react-swc";
2024-01-31 10:28:31 +08:00
// https://vitejs.dev/config/
export default defineConfig({
2024-06-06 20:25:29 +08:00
server: {
host: "192.168.10.167",
},
2024-01-31 10:28:31 +08:00
plugins: [react()],
2024-06-06 20:25:29 +08:00
});