15 lines
251 B
TypeScript
15 lines
251 B
TypeScript
|
|
import { defineConfig } from "vite";
|
||
|
|
import react from "@vitejs/plugin-react";
|
||
|
|
|
||
|
|
// https://vitejs.dev/config/
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [react()],
|
||
|
|
server: {
|
||
|
|
host: true,
|
||
|
|
port: 3200,
|
||
|
|
hmr: {
|
||
|
|
port: 3201,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|