8381483f79
Add the front-end sources of the new back-office. The front-end doesn't have any business logic, it only has the pages and the components, so it's purely UI. The front-end was developed in a separate repository until was completed. Change-Id: I382e50789d6b929a67b8a0b887563ef48cb1473d
58 lines
488 B
Markdown
58 lines
488 B
Markdown
# essentials
|
|
|
|
## Project setup
|
|
|
|
```
|
|
# yarn
|
|
yarn
|
|
|
|
# npm
|
|
npm install
|
|
|
|
# pnpm
|
|
pnpm install
|
|
```
|
|
|
|
### Compiles and hot-reloads for development
|
|
|
|
```
|
|
# yarn
|
|
yarn dev
|
|
|
|
# npm
|
|
npm run dev
|
|
|
|
# pnpm
|
|
pnpm dev
|
|
```
|
|
|
|
### Compiles and minifies for production
|
|
|
|
```
|
|
# yarn
|
|
yarn build
|
|
|
|
# npm
|
|
npm run build
|
|
|
|
# pnpm
|
|
pnpm build
|
|
```
|
|
|
|
### Lints and fixes files
|
|
|
|
```
|
|
# yarn
|
|
yarn lint
|
|
|
|
# npm
|
|
npm run lint
|
|
|
|
# pnpm
|
|
pnpm lint
|
|
```
|
|
|
|
### Customize configuration
|
|
|
|
See [Configuration Reference](https://vitejs.dev/config/).
|