forked from Gitlink/meeting
|
|
||
|---|---|---|
| public | ||
| src | ||
| .gitignore | ||
| .npmrc | ||
| .umirc.js | ||
| README.md | ||
| package-lock.json | ||
| package.json | ||
| pnpm-lock.yaml | ||
| tsconfig.json | ||
| typings.d.ts | ||
README.md
meeting
GitLink conference frontend built with Umi and Ant Design.
Getting Started
Install dependencies:
npm ci
Prepare Umi generated files:
npm run setup
Start the development server:
npm run dev
Build the production bundle:
npm run build
Project Layout
src/pages: page-level routes.src/layouts: application layouts.src/components: reusable UI components.src/constants: shared constants.src/utils: common utility functions.public: static assets served by Umi.
Local Configuration
Local-only files such as .env.local, .umirc.local.ts, and
config/config.local.ts are ignored by Git. Keep machine-specific values there
instead of committing them to the repository.