We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 224aaf3 commit 3dce7a0Copy full SHA for 3dce7a0
2 files changed
packages/bundler-rspack/package.json
@@ -41,7 +41,6 @@
41
"clean": "rimraf dist"
42
},
43
"dependencies": {
44
- "@rsbuild/plugin-pug": "^1.3.3",
45
"@rspack/core": "^2.0.3",
46
"@rspack/dev-server": "^2.0.1",
47
"@vuepress/bundlerutils": "workspace:*",
packages/bundler-rspack/src/config/handleModulePug.ts
@@ -7,6 +7,6 @@ export const handleModulePug = ({ config }: { config: RspackChain }): void => {
7
config.module
8
.rule('pug')
9
.test(/\.pug$/)
10
- .use('pug-loader')
11
- .loader('@rsbuild/plugin-pug')
+ .use('pug-plain-loader')
+ .loader('pug-plain-loader')
12
}
0 commit comments