Skip to content

Commit fb1216d

Browse files
committed
fix: prevent code from breaking just because it was bundled
1 parent 7922314 commit fb1216d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/phoenix/rollup.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export default {
2929
input: "src/main_puter.js",
3030
output: {
3131
file: "dist/bundle.js",
32-
format: "iife"
32+
format: "iife",
33+
strict: false,
3334
},
3435
plugins: [
3536
nodeResolve({

0 commit comments

Comments
 (0)