We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80a367b commit c3be198Copy full SHA for c3be198
packages/core/src/database/sqlite-wasm-adapter.ts
@@ -23,8 +23,7 @@ export class SqliteWasmAdapter implements SQLiteAdapter {
23
const nodeModule = await import(modulePath);
24
sqlite3InitModule = nodeModule.default;
25
} catch (error) {
26
- // Fallback: Use standard module with createRequire workaround
27
- console.warn('Using fallback SQLite initialization for Node.js environment');
+ // Fallback: Node-specific module not found, using standard browser build
28
const standardModule = await import('@sqlite.org/sqlite-wasm');
29
sqlite3InitModule = standardModule.default;
30
}
0 commit comments