(重构中) 🧗 Advanced, colorful front-end integration practice. be inspired by D2Admin --- D2 探索版,追求更好的前端工程实践
Advanced, colorful front-end integration practice. be inspired by D2Admin 🧗
Preview 👉 https://d2.pub/d2-advance/preview
Public Repositories: Github | 码云 (mirror)
src/views/admin
: An elegant dashboard (IN PROGRESS)src/views/space
: An personal workspace (IN PROGRESS)Requirements
# setup
yarn install
# start dev server
yarn serve
# production build
yarn build
# build with `report.html`
yarn build:report
# locally preview production build
yarn preview
# check and auto fix code by eslint
yarn lint
yarn lint --fix
# check type
yarn type
# git commit by commitizen
yarn commit
# take a release commit by standard-version
yarn release
# unit test by jest
yarn test:unit
type in global.d.ts
:
// ...
interface CustomEnvVariables {
VITE_BASE_URL: string;
VITE_HTTP_MOCK?: 'on' | 'off'; // is build with mock
VITE_SOURCE_MAP?: 'on' | 'off'; // is output .map
VITE_GZIP?: 'on' | 'off'; // is output .gz
VITE_BROTLI?: 'on' | 'off'; // is output .br
VITE_API_BASE_URL: string;
// ... more here and start with 'VITE_'
}
default values in .env
:
VITE_BASE_URL=./
VITE_HTTP_MOCK=on
VITE_SOURCE_MAP=off
VITE_GZIP=on
VITE_BROTLI=on
VITE_API_BASE_URL=/api
See Vite Configuration Reference.
MIT © CNine