@ouim/simple-logto
Version:
A simpler way to use @logto/react with prebuilt UI components and hooks for fast authentication setup
15 lines (14 loc) • 440 B
TypeScript
interface BundlerConfig {
optimizeDeps?: {
include: string[];
};
resolve?: {
alias: Record<string, string>;
};
alias?: Record<string, string>;
}
export declare const getBundlerConfig: (bundler?: "vite" | "webpack" | "nextjs") => BundlerConfig;
export declare const viteConfig: BundlerConfig;
export declare const webpackConfig: BundlerConfig;
export declare const nextjsConfig: BundlerConfig;
export {};