Installation

How to install and configure the NOBEARS Nuxt Basic template.

The NOBEARS Nuxt Basic template is a template that is used to create a new Nuxt project. It is a good starting point for creating a new Nuxt project that follows our coding standards, release process and more.

Setup

Clone the template in your desired location

bash
git clone https://git.nobears.nl/nobears-front-end/templates/nuxt-basic.git

Remove cloned git repository

bash
rm -rf .git

Add project to desired git repository

bash
git init --initial-branch=main
git remote add origin <your-git-repository>

Configure the template

For a more detailed explanation of the configuration, please refer to the configuration page.

We recommend you to do the following:

  1. Update the package.json file with your project details.
  2. Decide which format of the css you want to use.

Add your first commit

bash
git add .
git commit -m "chore(template): added NOBEARS Nuxt Basic template"
git push --set-upstream origin main