Back to Quasar

Quasar AE Playground (quasar-cli-webpack)

create-quasar/templates/app-extension/ae-ts/BASE/playground/quasar-cli-webpack/README.md

1.16.11.4 KB
Original Source

Quasar AE <%= name %> Playground (quasar-cli-webpack)

Playground for Quasar AE <%= name %>

Install the dependencies

<% if (packageManager) { %>bash <%= packageManager.name %> install <% } else { %>```bash

One of the following, depending on your package manager

npm install yarn install pnpm install bun install

<%

### Start the app in development mode (hot-code reloading, error reporting, etc.)

<% if (packageManager) { %>```bash
<%= packageManager.name %> run dev
```<% } else { %>```bash
# One of the following, depending on your package manager
npm run dev
yarn dev
pnpm dev
bun dev
```<% } %>

### Lint the files

<% if (packageManager) { %>```bash
<%= packageManager.name %> run lint
```<% } else { %>```bash
# One of the following, depending on your package manager
npm run lint
yarn lint
pnpm lint
bun lint
```<% } %>

### Format the files

<% if (packageManager) { %>```bash
<%= packageManager.name %> run format
```<% } else { %>```bash
# One of the following, depending on your package manager
npm run format
yarn format
pnpm format
bun format
```<% } %>

### Build the app for production

<% if (packageManager) { %>```bash
<%= packageManager.name %> run build
```<% } else { %>```bash
# One of the following, depending on your package manager
npm run build
yarn build
pnpm build
bun build
```<% } %>

### Customize the configuration

See [Configuring quasar.config file](https://v2.quasar.dev/quasar-cli-webpack/quasar-config-js).