我正在尝试让 Webpack 从使用 HtmlWebpackPlugin 的 pug 模板和 css 模块开始呈现静态 html 并导出相关 css。
我的设置如下
//webpack.config.js
...
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: "src/templates/index.pug",
excludeChunks: ["landing", "runtime"],
excludeAssets: [/index.*.js/]
})
new HtmlWebpackExcludeAssetsPlugin(),
new MiniCssExtractPlugin({
filename: "[name].[contenthash].css",
chunkFilename: "[name].[contenthash].css"
})
]
module: {
rules: [
/**
* pug
*/
{
test: /\.pug$/,
exclude: /node_modules/,
use: ["pug-loader"]
},
/**
* scss
*/
{
test: /\.scss$/,
exclude: /node_modules|_.+.scss/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV === "development"
}
},
{
loader: "css-loader",
options: {
modules: true,
localsConvention: "camelCase",
sourceMap: true
}
},
"postcss-loader",
"sass-loader"
]
}
]
}
...
然后在我的 index.pug 文件中,我想做这样的事情:
- var styles = require("../styles/style.module.scss")
div(class=styles.someClass)
问题是,如果我保持原样,我会得到
ERROR in ./src/styles/style.module.scss
Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):
TypeError: this[MODULE_TYPE] is not a function
我设法通过执行正确地在 pug 模板中获取转换后的类名
/**
* scss
*/
{
test: /\.scss$/,
exclude: /node_modules|_.+.scss/,
use: [
//{
// loader: MiniCssExtractPlugin.loader,
// options: {
// hmr: process.env.NODE_ENV === "development"
// }
//},
{
loader: "css-loader",
options: {
modules: true,
localsConvention: "camelCase",
sourceMap: true,
onlyLocals: true <=====
}
},
"postcss-loader",
"sass-loader"
]
}
但是通过从链中删除 MiniCssExtractLoader 我显然没有得到导出的 css 文件。
通过设置onlyLocals: true
,pug 中的类按预期工作,因为 css-loader 导出映射。如果我- var styles = require("../styles/style.module.scss")
从 pug 模板中删除并将 MiniCssExtractPlugin 留在加载程序的链中,我会得到相反的结果:css 文件,但没有映射。
任何的想法?有没有办法导出 css 文件并直接在 pug 模板中获取映射?
PS 我也从 pug-loader 的 GitHub 页面看到了这个例子
var template = require("pug-loader!./file.pug");
// => returns file.pug content as template function
// or, if you've bound .pug to pug-loader
var template = require("./file.pug");
var locals = { /* ... */ };
var html = template(locals);
// => the rendered HTML
以为template(locals)
会将本地人注入模板,但我可能误解了,因为返回的 html 具有未更改的类名称,因此问题仍然存在。