5a4a3c51e9
- Created Mode1Svelte as complete standalone project - Identical to Mode1 currently (Hono backend + Vite frontend) - Separate auth-module copy (no dependencies on Mode1) - Updated orchestrator to default to Mode1Svelte - Both Mode1 and Mode1Svelte are independent and interchangeable via ModeSwitch - Ready for gradual Svelte/SvelteKit migration while maintaining API compatibility
4 lines
218 B
TypeScript
4 lines
218 B
TypeScript
// Frontend entry point - exports auth module for browser
|
|
export { PocketBaseAuth, initPocketBaseAuth } from '../auth-module/frontend';
|
|
export type { AuthConfig, AuthState, AuthCallbacks } from '../auth-module/types';
|