Skip to content

Commit 60a3226

Browse files
authored
chore: formatting
1 parent 8118f74 commit 60a3226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/guides/web-workers.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ self.onmessage = ({ data: { publicPath, ...otherData } }) => {
7474
7575
```js
7676
const worker = new Worker(new URL('./worker.js', import.meta.url));
77-
worker.postMessage({publicPath: window.__MY_GLOBAL_PUBLIC_PATH_VAR__});
77+
worker.postMessage({ publicPath: window.__MY_GLOBAL_PUBLIC_PATH_VAR__ });
7878
```
7979
8080
## Node.js

0 commit comments

Comments
 (0)