9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// @ts-ignore no types needed for this import-less usage
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: { port: 5173, host: true },
|
|
});
|