> For the complete documentation index, see [llms.txt](https://codedthemes.gitbook.io/berry-vuetify/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://codedthemes.gitbook.io/berry-vuetify/directory-structure.md).

# Directory Structure

Under the **`berry-vuetify-vue/`** directory, You will find the following folder structure.

{% tabs %}
{% tab title="Directory Structure" %}

```javascript
berry-vuetify-vue
..

├── public
├── src
│   ├── _mockApis          -> Mock JSON data to be used for apps
│   ├── assets
│   │   ├── images
│   ├── components
│   ├── composables
│   ├── data
│   ├── layouts
│   │   ├── blank
│   │   ├── full
│   ├── pages                     -> All Pages
│   ├── plugins
│   ├── router                    -> Different route based on layouts
│   ├── SCSS                      -> Theme overrides styles
│   ├── stores                    -> Getters and Actions
│   ├── theme                     -> Contains theme style and theme
│   │   ├── DarkTheme.ts  
│   │   ├── LightTheme.ts
│   ├── types                     -> Types for TypeScript
│   ├── utils
│   │   ├── locales               -> Languages .json files
│   │   ├── helpers
│   ├── App.vue                   -> Starting point of application
│   ├── config.ts                 -> Template const value & live customizer
│   ├── main.ts                   -> Application root ts file
├── eslint.config.js              -> ESLint configuration file
├── index.html                    -> The main HTML entry point of the application.
├── tsconfig.vite-config.json
├── typed-router.d.ts    -> Auto-generated routes-should not be manually edited.
├── vite.config.ts                 -> Main configuration file for Vite
├── tsconfig.json        
├── package.json
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://codedthemes.gitbook.io/berry-vuetify/directory-structure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
