# install dependency
npm install
# develop
npm run devThis will automatically open http://localhost:9527.
# build for test environment
npm run build:sit
# build for production environment
npm run build:prod# --report to build with bundle size analytics
npm run build:prod --report
# --preview to start a server in local to preview
npm run build:prod --preview
# lint code
npm run lint
# auto fix
npm run lint -- --fix



