Change the directory and start the dev server.
cd site
yarn or npm install
yarn start or npm start
"Tailwind is a utility-first CSS framework for rapidly building custom user interfaces." –Tailwind
"Gatsby is a free and open source framework based on React that helps developers build blazing fast websites and apps." -Gatsby
Each time you build, the cache and public folder will be deleted to prevent stale data and files. Alternatively you can build without deleting the cache and public folder.
"build": "gatsby clean && gatsby build",
"build:noclean": "gatsby build",
"serve": "serve -l 9000 public",
"prod": "yarn build && yarn serve",
yarn fix
ornpm run fix
- Run Prettier and ESLint with the--fix
option
MIT