Template
1
0
Fork
You've already forked easypain
0
No description
  • Vue 88.6%
  • CSS 5.8%
  • TypeScript 5.6%
2023年11月15日 16:10:33 +01:00
assets/css initial commit 2023年11月15日 16:10:33 +01:00
components initial commit 2023年11月15日 16:10:33 +01:00
layouts initial commit 2023年11月15日 16:10:33 +01:00
pages initial commit 2023年11月15日 16:10:33 +01:00
public initial commit 2023年11月15日 16:10:33 +01:00
server initial commit 2023年11月15日 16:10:33 +01:00
.gitignore initial commit 2023年11月15日 16:10:33 +01:00
app.vue initial commit 2023年11月15日 16:10:33 +01:00
LICENSE Initial commit 2023年11月15日 15:03:10 +00:00
nuxt.config.ts initial commit 2023年11月15日 16:10:33 +01:00
package-lock.json initial commit 2023年11月15日 16:10:33 +01:00
package.json initial commit 2023年11月15日 16:10:33 +01:00
README.md initial commit 2023年11月15日 16:10:33 +01:00
tsconfig.json initial commit 2023年11月15日 16:10:33 +01: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
# 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.