搜索swf webpack加载器几个小时后效果不佳。 我只知道我现在需要一台装载机。 由于swf是一个Adobe Flash文件,我相信我只需要声明它的mime类型并将其包含在文件加载器中,但我还没有尝试过。 这是我的webpack.config.js:
module.exports = {
entry:["./script.js",
"./file.swf",
output:{
path:__dirname,
filename:"bundle.js"
},
module:{
loaders:[
//{}
]
}
};

答案 0 :(得分:5)
module.exports = {
module: {
loaders: [
{ test: /\.swf$/, loader: "file?name=[path][name].[ext]" }
]
}
}