diff --git a/src/controller/index.ts b/src/controller/index.ts index 6203463..d8fc693 100644 --- a/src/controller/index.ts +++ b/src/controller/index.ts @@ -20,7 +20,7 @@ export class ScramjetController { pushsourcemapfn: "$scramjet$pushsourcemap", }, files: { - wasm: "/scramjet.wasm.wasm", + wasm: "/scramjet.wasm.js", shared: "/scramjet.shared.js", worker: "/scramjet.worker.js", client: "/scramjet.client.js", @@ -29,10 +29,10 @@ export class ScramjetController { flags: { serviceworkers: false, syncxhr: false, - strictRewrites: true, naiiveRewriter: false, + strictRewrites: true, rewriterLogs: true, - captureErrors: true, + captureErrors: false, cleanErrors: false, scramitize: false, sourcemaps: false, diff --git a/src/types.d.ts b/src/types.d.ts index 3de07db..f89bfc1 100644 --- a/src/types.d.ts +++ b/src/types.d.ts @@ -26,8 +26,8 @@ import { ScramjetFrame } from "./controller/frame"; type ScramjetFlags = { serviceworkers: boolean; syncxhr: boolean; - strictRewrites: boolean; naiiveRewriter: boolean; + strictRewrites: boolean; rewriterLogs: boolean; captureErrors: boolean; cleanErrors: boolean;