-
-
Notifications
You must be signed in to change notification settings - Fork 257
Closed
Labels
Description
Version
System: OS: Windows 11 10.0.22621 / CPU: (8) x64 Intel(R) Core(TM) i7-6700HQ CPU @ 2.60GHz / Memory: 8.77 GB / 15.89 GB
Browsers:Edge: Chromium (131.0.2903.112)
npmPackages:
@rsbuild/core: ^1.4.13 => 1.5.1
@rsbuild/plugin-sass: ^1.4.0 => 1.4.0Details
import { defineConfig } from '@rsbuild/core';
import { pluginSass } from '@rsbuild/plugin-sass';
export default defineConfig({
source: {
entry: {
index: {
import: './src/index.ts',
html: false,
},
},
},
output: {
cleanDistPath: true,
distPath: {
root: 'public/dist',
},
manifest: true,
},
dev: {
watchFiles: {
paths: ['src/**/*.scss'],
},
},
plugins: [pluginSass()],
});
Reproduce link
Reproduce Steps
bun run build
Reactions are currently unavailable