Go to file
2025-04-18 10:19:12 +08:00
.vscode feat: 重构课程准备页面,更新导航结构并添加新页面 2025-04-17 20:17:00 +08:00
api refactor: enable eslint 2025-04-13 16:29:06 +08:00
assets/css feat: 课程章节UI 2025-04-03 22:57:36 +08:00
components feat: 重构课程准备页面,更新导航结构并添加新页面 2025-04-17 20:17:00 +08:00
layouts refactor: enable eslint 2025-04-13 16:29:06 +08:00
middleware refactor: enable eslint 2025-04-13 16:29:06 +08:00
pages feat: 重构课程准备页面,更新导航结构并添加新页面 2025-04-17 20:17:00 +08:00
public feat: 替换侧边栏中的NuxtImg为img标签,压缩背景图片 2025-04-13 15:41:02 +08:00
server feat: 课程章节UI 2025-04-03 22:57:36 +08:00
stores refactor: enable eslint 2025-04-13 16:29:06 +08:00
types refactor: enable eslint 2025-04-13 16:29:06 +08:00
utils refactor: enable eslint 2025-04-13 16:29:06 +08:00
.gitignore feat: 课程章节UI 2025-04-03 22:57:36 +08:00
app.vue refactor: enable eslint 2025-04-13 16:29:06 +08:00
components.json feat: 课程章节UI 2025-04-03 22:57:36 +08:00
eslint.config.mjs refactor: enable eslint 2025-04-13 16:29:06 +08:00
nuxt.config.ts refactor: enable eslint 2025-04-13 16:29:06 +08:00
package.json chore: add dep dotenv 2025-04-18 10:19:12 +08:00
pnpm-lock.yaml chore: add dep dotenv 2025-04-18 10:19:12 +08:00
README.md feat: 课程章节UI 2025-04-03 22:57:36 +08:00
tailwind.config.js refactor: enable eslint 2025-04-13 16:29:06 +08:00
tsconfig.json feat: 课程章节UI 2025-04-03 22:57:36 +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.