Skip to content

Commit

Permalink
chore: fix turbo config
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Dec 14, 2024
1 parent ad19122 commit aaa7306
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/shared/AbstractVideoAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ export abstract class AbstractVideoAdapter<
const video = panorama.source instanceof HTMLVideoElement
? panorama.source
: createVideo({
src: panorama.source,
withCredentials: this.viewer.config.withCredentials,
muted: this.config.muted,
autoplay: false,
});
src: panorama.source,
withCredentials: this.viewer.config.withCredentials,
muted: this.config.muted,
autoplay: false,
});

await this.__videoLoadPromise(video);

Expand Down
1 change: 1 addition & 0 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"$schema": "https://turborepo.org/schema.json",
"envMode": "loose",
"globalDependencies": [
".mocharc.json",
".nycrc.json",
Expand Down

0 comments on commit aaa7306

Please sign in to comment.