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)的引用。這是非常有幫助的,因為現在我們知道了,所要解決的問題的確切位置。