2023-12-07 22:51:31 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
|
import react from "@vitejs/plugin-react";
|
2023-11-21 02:11:10 +00:00
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
|
export default defineConfig({
|
2023-12-07 22:51:31 +00:00
|
|
|
plugins: [react()],
|
|
|
|
|
server: {
|
|
|
|
|
port: 3031,
|
|
|
|
|
},
|
|
|
|
|
build: {
|
|
|
|
|
manifest: true,
|
|
|
|
|
},
|
2023-11-21 02:11:10 +00:00
|
|
|
});
|