The Versia blog source code, written in Vue.
Find a file
2024-10-19 22:46:11 +02:00
components/article feat: Initialize new repo 2024-10-19 22:46:11 +02:00
composables/server feat: Initialize new repo 2024-10-19 22:46:11 +02:00
content/test feat: Initialize new repo 2024-10-19 22:46:11 +02:00
layouts feat: Initialize new repo 2024-10-19 22:46:11 +02:00
pages/articles feat: Initialize new repo 2024-10-19 22:46:11 +02:00
public feat: Initialize new repo 2024-10-19 22:46:11 +02:00
server feat: Initialize new repo 2024-10-19 22:46:11 +02:00
types feat: Initialize new repo 2024-10-19 22:46:11 +02:00
utils feat: Initialize new repo 2024-10-19 22:46:11 +02:00
.gitignore feat: Initialize new repo 2024-10-19 22:46:11 +02:00
app.vue feat: Initialize new repo 2024-10-19 22:46:11 +02:00
biome.json feat: Initialize new repo 2024-10-19 22:46:11 +02:00
bun.lockb feat: Initialize new repo 2024-10-19 22:46:11 +02:00
nuxt.config.ts feat: Initialize new repo 2024-10-19 22:46:11 +02:00
package.json feat: Initialize new repo 2024-10-19 22:46:11 +02:00
README.md feat: Initialize new repo 2024-10-19 22:46:11 +02:00
tailwind.config.ts feat: Initialize new repo 2024-10-19 22:46:11 +02:00
tsconfig.json feat: Initialize new repo 2024-10-19 22:46:11 +02:00
types.d.ts feat: Initialize new repo 2024-10-19 22:46:11 +02:00

Nuxt Minimal Starter

Look at the Nuxt documentation to learn more.

Setup

Make sure to install 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 dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.