摘要:
html-webpack-plugin Introduction: The HtmlWebpackPlugin simplifies creation of HTML files to serve your webpack bundles. This is especially useful for 阅读全文
摘要:
官方讲解地址:https://webpack.js.org/guides/development/#using-webpack-dev-server The webpack-dev-server provides you with a simple web server and the abilit 阅读全文
摘要:
官方文档地址:https://webpack.js.org/guides/development/#using-watch-mode You can instruct webpack to "watch" all files within your dependency graph for chan 阅读全文
摘要:
function _pad(num, n = 2) { let len = num.toString().length while (len < n) { num = '0' + num len++ } return num }let seconds = 8_pad(seconds) // '08' 阅读全文