mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
29 lines
563 B
TypeScript
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',
|
|
},
|
|
});
|