- Build your scripts
- Convention over Configuration
- Sensible opinionated defaults NO!, I don't want to configure your app
Decrease the number of decisions the programmer has to make and eliminate the complexity
- Nextjs uses
pages
as convention
Successful programming environments such as Ruby on Rails are based on this concept. If you follow the established conventions.
- Go to test-app and run
yarn
to install dependencies - Run one of the available commands:
yarn dev
- start the developmentyarn build
- build and optimize assets to dist/ directory