Getting Started
After downloading and unzipping the project go to the project folder run:
cd your_project_name
Inside the project, you can run some built-in commands: to start development run:
yarn dev# ornpm run dev
Open dev server to view it in the browser. The page will automatically reload if you make changes to the code. You will see the build errors and lint warnings in the console.
to build the project run:
yarn build# ornpm run build
to serve run:
yarn buildyarn start# ornpm run buildnpm run start