diff --git a/site/src/content/docs/concepts/architecture.mdx b/site/src/content/docs/concepts/architecture.mdx
index 10fcb1dc..40360ef1 100644
--- a/site/src/content/docs/concepts/architecture.mdx
+++ b/site/src/content/docs/concepts/architecture.mdx
@@ -116,10 +116,7 @@ function Player() {
```ts
-import { defineVjsPlayer } from '@videojs/html';
import '@videojs/html/skins/frosted';
-
-defineVjsPlayer();
```
diff --git a/site/src/content/docs/how-to/installation.mdx b/site/src/content/docs/how-to/installation.mdx
index 52829f92..9838c7d0 100644
--- a/site/src/content/docs/how-to/installation.mdx
+++ b/site/src/content/docs/how-to/installation.mdx
@@ -93,11 +93,8 @@ export default function App() {
```ts
-import { defineVjsPlayer } from '@videojs/html';
import '@videojs/html/skins/frosted';
-defineVjsPlayer();
-
document.body.innerHTML = `
diff --git a/site/src/examples/html/fullscreen-button/fullscreen-button.js b/site/src/examples/html/fullscreen-button/fullscreen-button.js
index b46b1e27..8c62e210 100644
--- a/site/src/examples/html/fullscreen-button/fullscreen-button.js
+++ b/site/src/examples/html/fullscreen-button/fullscreen-button.js
@@ -1,4 +1,4 @@
-import '@videojs/html';
+import '@videojs/html/define/media-fullscreen-button';
import '@videojs/html/icons';
// The web components will automatically register themselves
diff --git a/site/src/examples/html/mute-button/mute-button.js b/site/src/examples/html/mute-button/mute-button.js
index b46b1e27..204d3420 100644
--- a/site/src/examples/html/mute-button/mute-button.js
+++ b/site/src/examples/html/mute-button/mute-button.js
@@ -1,4 +1,4 @@
-import '@videojs/html';
+import '@videojs/html/define/media-mute-button';
import '@videojs/html/icons';
// The web components will automatically register themselves
diff --git a/site/src/examples/html/play-button/play-button.js b/site/src/examples/html/play-button/play-button.js
index b46b1e27..0a988b53 100644
--- a/site/src/examples/html/play-button/play-button.js
+++ b/site/src/examples/html/play-button/play-button.js
@@ -1,4 +1,4 @@
-import '@videojs/html';
+import '@videojs/html/define/media-play-button';
import '@videojs/html/icons';
// The web components will automatically register themselves