You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Bernd Storath de2ee3dc58 add prettier, format 1 year ago
..
assets/css add prettier, format 1 year ago
middleware add prettier, format 1 year ago
plugins add prettier, format 1 year ago
public add prettier, format 1 year ago
server add prettier, format 1 year ago
utils add prettier, format 1 year ago
.gitignore basic implementation 1 year ago
.prettierrc.json add prettier, format 1 year ago
README.md basic implementation 1 year ago
app.vue add prettier, format 1 year ago
eslint.config.mjs add prettier, format 1 year ago
i18n.config.ts add prettier, format 1 year ago
nuxt.config.ts add prettier, format 1 year ago
package.json add prettier, format 1 year ago
pnpm-lock.yaml add prettier, format 1 year ago
tailwind.config.ts add prettier, format 1 year ago
tsconfig.json basic implementation 1 year ago
wgpw.js add prettier, format 1 year ago
wgpw.sh move files 1 year ago

README.md

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

# bun
bun install

Development Server

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

# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.