webpackp篇 Tulipyuyu 2022-07-01 185 阅读1分钟 4. 代码分离 多入口实现代码分割 module.exports = { index:{ import: path.resolve(__dirname,'../src/index.js'), dependOn: 'shared' }, another:{ import: path.resolve(__dirname,'../src/another.js'), dependOn: 'shared' }, shared: 'lodash' } 动态导入