20 lines
788 B
TypeScript
20 lines
788 B
TypeScript
/**
|
|
* @lilith/configs - Vite React Configuration
|
|
*
|
|
* Re-exports from @lilith/vite-config-react for backwards compatibility.
|
|
* For new projects, use @lilith/vite-config-react directly.
|
|
*/
|
|
|
|
// Re-export everything from @lilith/vite-config-react
|
|
// Note: This provides the synchronous createViteConfigSync as `createViteConfig`
|
|
// For async version with auto-loaded pnpm-resolve, use @lilith/vite-config-react directly
|
|
export {
|
|
createViteConfigSync as createViteConfig,
|
|
createViteConfigSync,
|
|
createViteConfig as createViteConfigAsync,
|
|
} from '@lilith/vite-config-react';
|
|
|
|
export type { ViteConfigOptions, DevConsoleOptions } from '@lilith/vite-config-react';
|
|
|
|
// Default export is the sync config (for backwards compatibility)
|
|
export { default } from '@lilith/vite-config-react';
|