We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a21ebdb commit f4967a2Copy full SHA for f4967a2
template/ui/package.json.template
@@ -34,7 +34,7 @@
34
{{#if (eq uiTool "vite")}}
35
"vite": "^5.3.2",
36
{{else}}
37
- "@rsbuild/core": "^1.3.22",
+ "@rsbuild/core": "^1.4.3",
38
"@rsbuild/plugin-sass": "^1.3.2",
39
{{/if}}
40
"@halo-dev/ui-plugin-bundler-kit": "^2.21.2",
template/ui/rsbuild.config.ts
@@ -1,6 +1,7 @@
1
import { rsbuildConfig } from '@halo-dev/ui-plugin-bundler-kit';
2
import Icons from "unplugin-icons/rspack";
3
import { pluginSass } from "@rsbuild/plugin-sass";
4
+import type { RsbuildConfig } from "@rsbuild/core";
5
6
export default rsbuildConfig({
7
rsbuild: {
@@ -15,5 +16,5 @@ export default rsbuildConfig({
15
16
plugins: [Icons({ compiler: "vue3" })],
17
},
18
- }
19
-})
+ },
20
+}) as RsbuildConfig
0 commit comments