Go to file
Timothy Yin 50294b1519
All checks were successful
CI / lint (push) Successful in 53s
Add .gitea/workflows/ci.yml
2025-04-20 11:17:31 +08:00
.gitea/workflows Add .gitea/workflows/ci.yml 2025-04-20 11:17:31 +08:00
.vscode feat: 重构各级导航 2025-04-19 01:32:50 +08:00
api refactor: enable eslint 2025-04-13 16:29:06 +08:00
assets/css feat: 更新导航结构,重构课程准备页面及其子页面,添加新组件 2025-04-19 17:19:16 +08:00
components feat: 更新教案页面,添加课程智能体选项,优化样式和功能 2025-04-20 11:07:57 +08:00
layouts feat: 更新教案页面,添加课程智能体选项,优化样式和功能 2025-04-20 11:07:57 +08:00
middleware refactor: enable eslint 2025-04-13 16:29:06 +08:00
pages feat: 更新课程卡片布局,优化教案设计页面,添加响应式屏幕支持 2025-04-19 21:51:42 +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 feat: 重构各级导航 2025-04-19 01:32:50 +08:00
types feat: 重构各级导航 2025-04-19 01:32:50 +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
.prettierrc feat: 重构各级导航 2025-04-19 01:32:50 +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 chore: remove unused layout 2025-04-19 01:52:37 +08:00
nuxt.config.ts chore: remove unused layout 2025-04-19 01:52:37 +08:00
package.json feat: 更新教案页面,添加课程智能体选项,优化样式和功能 2025-04-20 11:07:57 +08:00
pnpm-lock.yaml feat: 更新教案页面,添加课程智能体选项,优化样式和功能 2025-04-20 11:07:57 +08:00
README.md feat: 课程章节UI 2025-04-03 22:57:36 +08:00
tailwind.config.js feat: 更新教案页面,添加课程智能体选项,优化样式和功能 2025-04-20 11:07:57 +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.