From 39d0d3ab4c9447cd835fdc5b3513cbccdcce814f Mon Sep 17 00:00:00 2001 From: "H.$" Date: Sun, 28 Apr 2024 21:35:09 +0530 Subject: [PATCH] Update build command in vite.config.js --- vite.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.js b/vite.config.js index 38980a2..0525da1 100644 --- a/vite.config.js +++ b/vite.config.js @@ -5,6 +5,6 @@ import react from "@vitejs/plugin-react"; export default defineConfig({ plugins: [react()], build: { - outDir: "public", + outDir: "build", }, });