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

418 B

Forum Frontend

The frontend for the forum is written in React.

Note: Before running, update the apiUrl in app/src/App.js to point your backend.

Development

To start the frontend in development mode and serve on http://localhost:3000:

npm run start

Production

# Install serve
npm install -g serve

# Build for production
npm run build

# Serve
serve -s --no-clipboard build