This is testing repo was created to build an App using Nuxt.js 3. Here will be described the instructions for working with NuxtJS and the technology stack that will be used for this project. All project code will comply with international web-standards and official framework documentation.
- HTML/CSS/JS
- Tailwind CSS
- Vue.js ( Nuxt 3 )
Be sure that you have these applications:
- Latest LTS version of Node.js
- Extension for VScode Live Server
- Extension for VScode Vue Language Features (Volar)
Open a terminal and use the following command to create a new project:
# npx
npx nuxi init <project-name>
Look at the nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm install
Start the development server on http://localhost:3000
npm run dev
Build the application for production:
npm run build
Locally preview production build:
npm run preview
Checkout the deployment documentation for more information.