forum-app/frontend/README.md
2024-04-09 17:47:09 -04:00

20 lines
280 B
Markdown

# Forum Frontend
## Development
To start the frontend in development mode and serve on http://localhost:3000:
```shell
npm run start
```
## Production
```shell
# Install serve
npm install -g serve
# Build for production
npm run build
# Serve
serve -s --no-clipboard build
```