blob: 8807be87b2f28909d87c521d2a1a8545155c98f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import { defineConfig } from "@rsbuild/core";
import { pluginEslint } from "@rsbuild/plugin-eslint";
import { pluginReact } from "@rsbuild/plugin-react";
import { pluginSvgr } from "@rsbuild/plugin-svgr";
import flowbiteReact from "flowbite-react/plugin/rsbuild";
export default defineConfig({
plugins: [
pluginEslint({
eslintPluginOptions: {
cwd: __dirname,
configType: "flat",
},
}),
pluginReact(),
pluginSvgr(),
flowbiteReact(),
],
html: {
template: "./public/index.html",
},
});
|