No description
Find a file
2023-07-26 20:04:00 +02:00
.nuxt initialize Nuxt 2023-07-26 20:04:00 +02:00
public initialize Nuxt 2023-07-26 20:04:00 +02:00
server initialize Nuxt 2023-07-26 20:04:00 +02:00
.gitignore initialize Nuxt 2023-07-26 20:04:00 +02:00
app.vue initialize Nuxt 2023-07-26 20:04:00 +02:00
LICENSE Initial commit 2023-07-26 19:43:05 +02:00
nuxt.config.ts initialize Nuxt 2023-07-26 20:04:00 +02:00
package.json initialize Nuxt 2023-07-26 20:04:00 +02:00
README.md initialize Nuxt 2023-07-26 20:04:00 +02:00
tsconfig.json initialize Nuxt 2023-07-26 20:04:00 +02:00
yarn.lock initialize Nuxt 2023-07-26 20:04:00 +02:00

Nuxt 3 Minimal Starter

Look at the Nuxt 3 documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

Development Server

Start the development server on http://localhost:3000:

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

Check out the deployment documentation for more information.