Webpack4動態(tài)導(dǎo)入文件報錯,現(xiàn)在還不支持動態(tài)使用import語法。需要下載babel插件對語法做轉(zhuǎn)換。
安裝依賴
npm i babel-plugin-dynamic-import-webpack --save-dev
添加.babellrc文件(根目錄)
{
"plugins": ["@babel/plugin-syntax-dynamic-import"]
}
Webpack4動態(tài)導(dǎo)入文件報錯,現(xiàn)在還不支持動態(tài)使用import語法。需要下載babel插件對語法做轉(zhuǎn)換。
npm i babel-plugin-dynamic-import-webpack --save-dev
{
"plugins": ["@babel/plugin-syntax-dynamic-import"]
}