Go to file
Timothy Yin 49b9e97ee8
Some checks failed
CI / test (push) Failing after 1m12s
CI / lint (push) Failing after 14m36s
feat: 完成教学设计模块(除了课程图谱),添加了炫酷的思考中动画
2025-04-27 18:51:40 +08:00
.gitea/workflows Update .gitea/workflows/ci.yml 2025-04-20 11:20:30 +08:00
.vscode feat: 教学设计部分 UI 2025-04-26 19:29:50 +08:00
api feat: 完成 AIGC Conversation 组件 2025-04-26 21:54:10 +08:00
assets/css feat: 更新导航结构,重构课程准备页面及其子页面,添加新组件 2025-04-19 17:19:16 +08:00
components feat: 完成教学设计模块(除了课程图谱),添加了炫酷的思考中动画 2025-04-27 18:51:40 +08:00
layouts ci: add unit test 2025-04-20 18:48:57 +08:00
middleware refactor: enable eslint 2025-04-13 16:29:06 +08:00
pages feat: 完成教学设计模块(除了课程图谱),添加了炫酷的思考中动画 2025-04-27 18:51:40 +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: 完成 AIGC Conversation 组件 2025-04-26 21:54:10 +08:00
tests/components ci: add unit test 2025-04-20 18:48:57 +08:00
types feat: 重构各级导航 2025-04-19 01:32:50 +08:00
utils feat: 完成 AIGC Conversation 组件 2025-04-26 21:54:10 +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 feat: 完成教学设计模块(除了课程图谱),添加了炫酷的思考中动画 2025-04-27 18:51:40 +08:00
nuxt.config.ts feat: 教学设计部分 UI 2025-04-26 19:29:50 +08:00
package.json feat: 教学设计部分 UI 2025-04-26 19:29:50 +08:00
pnpm-lock.yaml feat: 教学设计部分 UI 2025-04-26 19:29:50 +08:00
README.md feat: 课程章节UI 2025-04-03 22:57:36 +08:00
tailwind.config.js feat: 教学设计部分 UI 2025-04-26 19:29:50 +08:00
tsconfig.json feat: 课程章节UI 2025-04-03 22:57:36 +08:00
vitest.config.ts ci: add unit test 2025-04-20 18:48:57 +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.