flowgram.ai/apps/demo-react-16/rsbuild.config.ts
xiamidaxia a98244c6a3
Feat/support react 16 (#221)
* chore: support react 16

* chore: support react 16
2025-05-13 06:16:00 +00:00

29 lines
563 B
TypeScript

import path from 'node:path';
import { pluginReact } from '@rsbuild/plugin-react';
import { defineConfig } from '@rsbuild/core';
export default defineConfig({
plugins: [
pluginReact({
swcReactOptions: {
runtime: 'classic',
},
}),
],
source: {
entry: {
index: './src/app.tsx',
},
},
resolve: {
alias: {
react: path.resolve(__dirname, './node_modules/react'),
'react-dom': path.resolve(__dirname, './node_modules/react-dom'),
},
},
html: {
title: 'demo-free-layout-simple',
},
});