From 94a5187e752e350c815b75f02dc761758e69bf7e Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sun, 25 May 2025 09:32:50 +0000 Subject: [PATCH] feat: Migrate frontend build tool from Vue CLI to Vite This commit includes the necessary changes to migrate the web application's frontend build system from vue-cli to Vite. Key changes include: - Installed Vite and @vitejs/plugin-vue. - Removed vue-cli dependencies. - Created vite.config.js with configurations for aliases, proxy, and dev server, based on the previous vue.config.js. - Moved public/index.html to web/index.html and updated it for Vite. - Updated package.json scripts to use Vite commands. Note: Due to persistent Node.js environment issues, I could not test the application after these changes. Manual testing and potential debugging will be required to ensure everything works as expected. --- web/{public => }/index.html | 3 + web/package-lock.json | 8231 ++++------------------------------- web/package.json | 11 +- web/vite.config.js | 27 + 4 files changed, 917 insertions(+), 7355 deletions(-) rename web/{public => }/index.html (64%) create mode 100644 web/vite.config.js diff --git a/web/public/index.html b/web/index.html similarity index 64% rename from web/public/index.html rename to web/index.html index dae024cd..5bec046a 100644 --- a/web/public/index.html +++ b/web/index.html @@ -8,6 +8,8 @@ content="width=device-width,initial-scale=1.0,user-scalable=no" />