mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
import { pluginReact } from '@rsbuild/plugin-react';
|
|
import { defineConfig } from '@rsbuild/core';
|
|
|
|
export default defineConfig({
|
|
plugins: [pluginReact()],
|
|
source: {
|
|
entry: {
|
|
index: './src/app.tsx',
|
|
},
|
|
},
|
|
html: {
|
|
title: 'demo-free-layout-simple',
|
|
},
|
|
});
|