如何从 webpack 的 raw-loader 中排除 html-webpack-plugin 模板
How to exclude html-webpack-plugin templates from raw-loader in webpack
我有一个非常大的项目,它使用两个 webpack 包来支持网站的旧版本和新版本。一个的配置使用原始加载程序来处理 html 个文件。它看起来像这样:
this.configModern = {
entry: 'modern',
output: {
filename: 'bundled-[name].[chunkhash].js',
path: path.join(__dirname, '/Scripts/bundled/')
},
module: {
rules: [
{
test: /\.html$/,
use: [
'raw-loader'
]
},
]
},
plugins: [
new CommonsChunkPlugin({
name: 'vendor-modern',
minChunks: function (module) {
return module.context
&& module.context.includes('node_modules');
}
}),
new webpack.ProvidePlugin({
'window.jQuery': 'jquery'
}),
new HtmlWebpackPlugin({
filename: 'bundle_modern_dev.html',
template: './Views/Shared/WebpackTemplates/devTemplate.html',
inject: false,
}),
],
};
这是我的 devTemplate.html
<% for (var js in htmlWebpackPlugin.files.js) { %>
<script src="/Scripts/bundled/<%= htmlWebpackPlugin.files.js[js] %>"></script>
<% } %>
我的问题是 raw-loader 导致 webpack 将我的 devTemplate.html 的内容复制到输出文件。
如何排除模板文件,使其使用 html-webpack-plugin 的默认 ejs 加载器,而不使用原始加载器。
编辑:
webpack 是 2.3.1 版本
html-webpack-plugin 是 3.2.0 版本
这就是我们如何在 Webpack 中排除文件或文件夹
module: {
rules: [
{
test: /\.html$/,
exclude:/WebpackTemplates/, /* Add this line */
use: [
'raw-loader'
]
},
]
},
我将包含模板 (WebpackTemplates) 的文件夹添加到 raw-loaderexclude 选项
这意味着它将忽略该文件夹中的所有文件。
您可以使用正则表达式添加多个 folders/folder 来排除选项。
我有一个非常大的项目,它使用两个 webpack 包来支持网站的旧版本和新版本。一个的配置使用原始加载程序来处理 html 个文件。它看起来像这样:
this.configModern = {
entry: 'modern',
output: {
filename: 'bundled-[name].[chunkhash].js',
path: path.join(__dirname, '/Scripts/bundled/')
},
module: {
rules: [
{
test: /\.html$/,
use: [
'raw-loader'
]
},
]
},
plugins: [
new CommonsChunkPlugin({
name: 'vendor-modern',
minChunks: function (module) {
return module.context
&& module.context.includes('node_modules');
}
}),
new webpack.ProvidePlugin({
'window.jQuery': 'jquery'
}),
new HtmlWebpackPlugin({
filename: 'bundle_modern_dev.html',
template: './Views/Shared/WebpackTemplates/devTemplate.html',
inject: false,
}),
],
};
这是我的 devTemplate.html
<% for (var js in htmlWebpackPlugin.files.js) { %>
<script src="/Scripts/bundled/<%= htmlWebpackPlugin.files.js[js] %>"></script>
<% } %>
我的问题是 raw-loader 导致 webpack 将我的 devTemplate.html 的内容复制到输出文件。
如何排除模板文件,使其使用 html-webpack-plugin 的默认 ejs 加载器,而不使用原始加载器。
编辑:
webpack 是 2.3.1 版本
html-webpack-plugin 是 3.2.0 版本
这就是我们如何在 Webpack 中排除文件或文件夹
module: {
rules: [
{
test: /\.html$/,
exclude:/WebpackTemplates/, /* Add this line */
use: [
'raw-loader'
]
},
]
},
我将包含模板 (WebpackTemplates) 的文件夹添加到 raw-loaderexclude 选项
这意味着它将忽略该文件夹中的所有文件。
您可以使用正则表达式添加多个 folders/folder 来排除选项。