A website to showcase projects created by AFSpeirs
Runs the site in the development mode.
npm start
#### or start the server and open the app in a new browser tab
npm start -- --open
Build the project for production
npm run build
Used to preview the contents of a production build
npm run preview
# Commonly used with the build command
npm run build && npm run preview
Lint the project and returns issues if any are found.
npm run lint
Check for typescript issues in the project
npm run check
# Can also watch for changes to files
npm run check:watch