在尝试使用file-loader outputPath
选项构建AOT构建时,我遇到了一个问题。结果输出是<img>
标记,用引号("<img src=images/world.png alt=world />"
)包围。
这只发生在我的AOT构建中,而不是在我的Dev构建中。所以我猜测文件加载器在它的编译周期中被切断,并且插入了结果字符串。
版本:
Angular: 4.4.4
@ngtools/webpack: 1.7.2,
file-loader: 1.1.5,
image-webpack-loader: 3.4.2,
webpack: 3.6.0,
webpack-dev-server: 2.9.1
webpack.common.js |规则部分
module: {
rules: [
{
test: /\.html$/,
loader: 'html-loader',
options: {
minimize: true,
caseSensitive: true
}
},
{
test: /\.scss$/,
exclude: /node_modules/,
loaders: ['raw-loader', 'sass-loader']
},
{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
{
loader: 'file-loader', // Image loader
options: {
name: '[name].[ext]',
outputPath: 'images/' // Fails with AOT build. <img> tag gets turned into a string
}
},
{
loader: 'image-webpack-loader'
}
]
},
{
test: /\.(eot|woff2?|ttf)([?]?.*)$/, // Font loader
use: 'file-loader'
}
]
},
webpack.prod.js
module.exports = merge(common, {
module: {
rules: [
{
test: /\.ts$/,
loaders: ['@ngtools/webpack']
}
]
},
plugins: [
new webpack.optimize.UglifyJsPlugin({ // Uglyfy the JavaScript output | Still gives a small win with AOT build
beautify: false,
mangle: {
screw_ie8: true,
keep_fnames: true
},
compress: {
warnings: false,
screw_ie8: true
},
comments: false
}),
new AotPlugin({ // Create AOT build
tsConfigPath: './tsconfig.json',
entryModule: __dirname + '/src/app/app.module#AppModule'
}),
new webpack.DefinePlugin({ // Set the node env so that the project knows what to enable or disable
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
})
]
});
这是一个错误还是我做错了什么?如果它是一个错误,哪一方是错误,@ngtools/webpack
或file-loader
?
感谢任何帮助!
我的app.html供参考
<div>
<h1>Hello world</h1>
<img src="../assets/world.png" alt="world"/>
</div>
输出:
更新
这似乎是Angular的AOT编译器中的一个错误。所以我做了Bug report on GitHub。下面的评论中有一个解决方案,但如果有一个修复此错误将是很好的。
答案 0 :(得分:1)
我认为这是一个错误。它呈现为字符串的原因是因为URL周围没有引号。
解决方法是通过html-loader插件添加引号:
{
test: /\.html$/, loader: 'html-loader', options: {
removeAttributeQuotes: false
}
}
有更好的解决方案吗?