diff --git a/README.md b/README.md index 0004ff4..e5c5ff7 100644 --- a/README.md +++ b/README.md @@ -70,11 +70,15 @@ project/ ├── vue # Vite build output (generated after running pnpm build) ├── src/ # Frontend source code │ ├── components/ # Vue components +│ ├── pages/ # Vue pages │ ├── assets/ # CSS, images, etc. │ ├── App.vue # Main Vue component +│ ├── router.js # Vue router │ └── main.js # Entry point for the Vue app ├── package.json # Node.js dependencies ├── tailwind.config.cjs # Tailwind CSS configuration +├── vite.config.js # Vite configuration +├── jsconfig.json # VScode IDE configuration for Javascript └── ... ```