tbeg-web/vite.config.ts

12 lines
215 B
TypeScript
Raw Normal View History

2022-03-21 04:29:58 +08:00
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
2022-03-09 00:43:05 +08:00
// https://vitejs.dev/config/
export default defineConfig({
2022-03-21 04:29:58 +08:00
server: {
port: 3000,
host: true,
},
plugins: [react()],
});