webpack开发工具
程序员文章站
2022-06-18 23:45:35
source map 用来调试打包后的代码 ......
source map
用来调试打包后的代码
const path = require('path'); const htmlwebpackplugin = require('html-webpack-plugin'); const cleanwebpackplugin = require('clean-webpack-plugin'); module.exports = { entry: { app: './src/index.js', print: './src/print.js' }, + devtool: 'inline-source-map', plugins: [ new cleanwebpackplugin(['dist']), new htmlwebpackplugin({ title: 'development' }) ], output: { filename: '[name].bundle.js', path: path.resolve(__dirname, 'dist') } }; 现在在浏览器打开最终生成的 index.html 文件,点击按钮,并且在控制台查看显示的错误。错误应该如下: uncaught referenceerror: cosnole is not defined at htmlbuttonelement.printme (print.js:2) 我们可以看到,此错误包含有发生错误的文件(print.js)和行号(2)的引用。这是非常有帮助的,因为现在我们知道了,所要解决的问题的确切位置。
上一篇: 朋友圈已经被《后浪》刷屏?用Python看一下微博和知乎别人的看法
下一篇: 【C++】考研复习