Web authentication now uses OIDC Authorization Code flow with PKCE instead of NPM forward auth. Added callback route and web utilities. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
193 B
Dart
8 lines
193 B
Dart
/// Web utilities with conditional imports.
|
|
///
|
|
/// Uses stub implementation on non-web platforms.
|
|
library;
|
|
|
|
export 'web_utils_stub.dart'
|
|
if (dart.library.js_interop) 'web_utils_web.dart';
|