turn on sourcemaps by default

This commit is contained in:
Percs 2025-03-20 09:19:49 -05:00
parent 9d0344aa42
commit eadd1c9e82
5 changed files with 184 additions and 213 deletions

View file

@ -35,7 +35,7 @@ export class ScramjetController {
captureErrors: true,
cleanErrors: false,
scramitize: false,
sourcemaps: false,
sourcemaps: true,
},
siteFlags: {},
codec: {
@ -120,6 +120,7 @@ export class ScramjetController {
}
const tx = this.db.transaction("config", "readwrite");
const store = tx.objectStore("config");
console.log(store.getAll());
const req = store.put($scramjet.config, "config");
return new Promise((resolve, reject) => {