rsbuild.config.ts 382 B

12345678910111213141516171819
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { pluginReact } from '@rsbuild/plugin-react';
  6. import { defineConfig } from '@rsbuild/core';
  7. export default defineConfig({
  8. plugins: [pluginReact()],
  9. source: {
  10. entry: {
  11. index: './src/app.tsx',
  12. },
  13. },
  14. html: {
  15. title: 'demo-free-layout-simple',
  16. },
  17. });