This repository is used to the Nuxt Fundamentals Workshop by Vue School
- Download the Boilerplate Code
- Ensure you're on Node +v20.x.x (LTS)
- If you need to switch versions of node you can use Node Version Manager (nvm)
- Also note, your version of Node MIGHT work just fine, we just haven’t tested the project on a lower version.
- Install dependencies
npm install
- Startup development server
npm run dev
Each challenge has two branches: '-begin' and '-end'.
The 'begin' branch includes the starting point or boilerplate, while the 'end' branch contains the solution for reference.
To start working on a specific exercise:
- Run in VS Code terminal:
git checkout {exerciseNumber}-begin
💡 Replace
{exerciseNumber}
with the exercise number.
Before moving to a new branch, you might need to commit your changes or reset them.
- To reset your local branch and remove all changes:
git reset --hard && git clean -df
- Install and enable Vue Language Extension