摘要: 1. 开发时依赖 打包之后就没用的包 npm install webpack@3.6.0 --save-dev 2. 运行时依赖 注意: npm init npm install npm run build (优先从本地找 | 终端里输入 webpack 直接使用全局包) npm run serve 阅读全文
posted @ 2022-11-26 20:42 n9c9 阅读(43) 评论(0) 推荐(0)
摘要: src main.js dist(distribution 发布) index.html webpack.config.js webpack ./src/main.js ./dist/bundle.js 阅读全文
posted @ 2022-11-26 16:33 n9c9 阅读(20) 评论(0) 推荐(0)
摘要: 1. webpack webpack 就是一个 JavaScript 的静态模块打包工具。 2. 目前市场上的打包工具 grunt gulp webpack rollup 其实 Vue 的源码就是基于 rollup 来构建的。 3. 前端模块化 底层支撑: 在 webpack 中,可以使用 comm 阅读全文
posted @ 2022-11-26 16:23 n9c9 阅读(31) 评论(0) 推荐(0)