diff --git a/rsbuild.config.ts b/rsbuild.config.ts index 1ba1949..726a6c3 100644 --- a/rsbuild.config.ts +++ b/rsbuild.config.ts @@ -40,5 +40,8 @@ export default defineConfig({ distPath: { root: 'dist/web', }, + copy: process.env.NODE_ENV === 'development' ? [ + { from: './content', to: 'content' } + ] : [], }, });