1. 程式人生 > 其它 >webpack5打包錯誤(Automatic publicPath is not supported in this browser )

webpack5打包錯誤(Automatic publicPath is not supported in this browser )

技術標籤:webpack

Automatic publicPath is not supported in this browser 錯誤
在這裡插入圖片描述

解決方法:

//在webpack.config.js檔案中新增
module.exports = 
{
    output: {
        publicPath: './'
    }
}