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