flowbite-react
Version:
Official React components built for Flowbite and Tailwind CSS
8 lines (7 loc) • 345 B
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): ConfigurationCallback;
export {};