From 3d7db64f8aaede2ba68e2971bce08f6dced96d41 Mon Sep 17 00:00:00 2001 From: Amro Alfien Date: Tue, 19 Nov 2024 07:44:27 +0700 Subject: [PATCH] update folder structure --- README.md | 4 ++++ 1 file changed, 4 insertions(+) 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 └── ... ```