# FeedMe Brand App - Merchant

This project is a Vue 3-based application for merchants to manage their business mini-programs.

## Recommended IDE Setup

[VSCode](https://code.visualstudio.com/) + [Vue - Official](https://marketplace.visualstudio.com/items?itemName=Vue.volar) + [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode)

## Project Setup

Install dependencies:

```sh
pnpm install
```

### Serve the Application

To serve the application locally, use one of the following commands:

- **Development Mode**:

  ```sh
  pnpm dev
  ```

  This will start the app in development mode.

- **Production Mode (Local Debug)**:
  ```sh
  pnpm prod
  ```
  This will start the app in a local production-like environment.

### Access the Application

After serving the application, navigate to:

```
http://localhost:4000
```

### Type-Check, Compile, and Minify for Production

```sh
pnpm build
```

## Recommended Editor Settings

To ensure consistent formatting, add the following settings to your editor configuration:

```json
{
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true
}
```
