Go to file
2025-04-25 18:02:03 +08:00
assets 写blog菜单样式 2025-04-25 18:02:03 +08:00
components 写blog菜单样式 2025-04-25 18:02:03 +08:00
docs 写blog菜单样式 2025-04-25 18:02:03 +08:00
drizzle 写接口 2025-04-25 11:33:24 +08:00
layouts 写blog菜单样式 2025-04-25 18:02:03 +08:00
modules 写接口 2025-04-25 11:33:24 +08:00
pages 写blog菜单样式 2025-04-25 18:02:03 +08:00
plugins 完成导航,下一步,写blog目录新增! 2025-04-23 01:49:13 +08:00
public first commit 2025-04-22 01:24:24 +08:00
server 写接口 2025-04-25 11:33:24 +08:00
types 写接口 2025-04-25 11:33:24 +08:00
.gitignore 准备写接口,了解了nuxt请求的生命周期,不要尝试在中间件中等请求体返回后处理数据 2025-04-24 18:15:06 +08:00
app.vue first commit 2025-04-22 01:24:24 +08:00
drizzle.config.js 准备写接口,了解了nuxt请求的生命周期,不要尝试在中间件中等请求体返回后处理数据 2025-04-24 18:15:06 +08:00
eslint.config.mjs first commit 2025-04-22 01:24:24 +08:00
nuxt.config.ts 写blog菜单样式 2025-04-25 18:02:03 +08:00
package-lock.json 准备写接口,了解了nuxt请求的生命周期,不要尝试在中间件中等请求体返回后处理数据 2025-04-24 18:15:06 +08:00
package.json 准备写接口,了解了nuxt请求的生命周期,不要尝试在中间件中等请求体返回后处理数据 2025-04-24 18:15:06 +08:00
README.md first commit 2025-04-22 01:24:24 +08:00
tailwind.config.js first commit 2025-04-22 01:24:24 +08:00
tsconfig.json 写接口 2025-04-25 11:33:24 +08: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.