摘要:
新建项目文件夹: mkdir react-setup cd react-setup mkdir public src touch public/index.html touch src/app.js 配置及依赖: npm init -y npm install webpack webpack-cli 阅读全文
摘要:
一) 安装基础依赖 Npm init -y npm install webpack webpack-cli --save-dev npm install typescript ts-loader --save-dev npm install jest @types/jest ts-jest --sa 阅读全文
摘要:
Webpack.config.js的entry属性定义了打包文件的入口点。 参考:https://webpack.docschina.org/configuration/entry-context/#entry 但在实践中开发人员可能会发现其不便之处:对于multi-page app,需要为每个js 阅读全文