This repository is the frontend app for Fynd’s extension starter templates. You probably don’t want to use this repository directly, but rather through one of the example templates.
Below is the structure of the project directory along with brief descriptions of the main components:
.
├── App.vue # The main Vue component
├── README.md # Project documentation
├── babel.config.js # Babel configuration
├── fdk.ext.config.json # Configuration file for FDK extension
├── index.html # Main HTML file
├── jest.config.js # Jest configuration for unit tests
├── main.js # Entry point for the Vue application
├── package-lock.json # Lockfile for npm dependencies
├── package.json # Project metadata and dependencies
├── pages # Page components
│ ├── Home.vue # Home page component
│ └── NotFound.vue # 404 Not Found page component
├── public # Public assets
├── router.js # Vue Router configuration
├── test # Test files and configurations
└── vite.config.js # Vite configuration file contains the configuration for Vite, including server setup and proxy settings.