Closed penberg closed 9 months ago
The database filename is hard-coded in wasm:
const db: Database = new sqlite3.oo1.DB('/mydb.sqlite3', 'ct');
Fix that by parsing the URL with file:// protocol.
file://
Fixed by https://github.com/tursodatabase/libsql-client-ts/pull/171
The database filename is hard-coded in wasm:
Fix that by parsing the URL with
file://
protocol.