flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
8 lines (7 loc) • 358 B
text/typescript
import type { NextConfig } from "next";
interface ConfigurationOptions {
defaultConfig: NextConfig;
}
type ConfigurationCallback = (phase: string, options: ConfigurationOptions) => NextConfig | Promise<NextConfig>;
export default function withFlowbiteReact(nextConfig?: NextConfig | ConfigurationCallback): NextConfig | ConfigurationCallback;
export {};