17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
/*
|
|
* @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";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
server: {
|
|
host: "192.168.10.167",
|
|
},
|
|
plugins: [react()],
|
|
});
|