Skip to content

Commit

Permalink
fix: more controller patches
Browse files Browse the repository at this point in the history
  • Loading branch information
Percslol committed Dec 17, 2024
1 parent 7d8669c commit 80592c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/controller/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 80592c8

Please sign in to comment.