Skip to content

Commit

Permalink
Fix tree-shaking on prod. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
kixelated authored Dec 3, 2024
1 parent 4e46a4e commit efc2757
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@astrojs/node": "8.3.4",
"@astrojs/solid-js": "4.4.4",
"@astrojs/tailwind": "5.1.2",
"@kixelated/moq": "^0.3.4",
"@kixelated/moq": "^0.3.5",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"astro": "4.16.16",
Expand Down
2 changes: 1 addition & 1 deletion src/components/watch.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import "@kixelated/moq";
import "@kixelated/moq/element/video";

export default function Watch(props: { path: string }) {
// Use query params to allow overriding environment variables.
Expand Down
2 changes: 1 addition & 1 deletion src/pages/watch/[...path].astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ import Layout from "@/layouts/global.astro";
Watching a <strong>PUBLIC</strong> broadcast. Pls report any abuse.
</p>

<Watch client:only="solidjs" path={path} />
<Watch client:only="solid-js" path={path} />
</Layout>

0 comments on commit efc2757

Please sign in to comment.