mirror of
https://github.com/kccleoc/seedpgp-web.git
synced 2026-03-07 09:57:50 +08:00
fix: Correct sessionCrypto import paths and restore missing module
- Fix App.tsx import from '../.Ref/sessionCrypto' to './lib/sessionCrypto' - Fix main.tsx import from '../.Ref/sessionCrypto' to './lib/sessionCrypto' - Restore src/lib/sessionCrypto.ts module (full AES-GCM encryption implementation) - Fixes TypeScript compilation errors blocking Cloudflare Pages deployment
This commit is contained in:
@@ -40,7 +40,7 @@ import './index.css'
|
||||
import App from './App'
|
||||
|
||||
if (import.meta.env.DEV) {
|
||||
await import('../.Ref/sessionCrypto');
|
||||
await import('./lib/sessionCrypto');
|
||||
}
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
|
||||
Reference in New Issue
Block a user