From f7ad0c6487d18aae191581657de856beb81b34c9 Mon Sep 17 00:00:00 2001 From: Lisenaaaa <69115669+Lisenaaaa@users.noreply.github.com> Date: Fri, 21 Apr 2023 21:26:08 -0700 Subject: [PATCH] add invidious embed for the video --- package-lock.json | 27 ++++++++++++++++++++++++++- package.json | 1 - src/App.vue | 21 +++++++++++++++++---- src/components/HelloWorld.vue | 8 ++++++-- src/components/TheWelcome.vue | 5 ----- src/components/Video.vue | 9 +++++++++ 6 files changed, 58 insertions(+), 13 deletions(-) delete mode 100644 src/components/TheWelcome.vue create mode 100644 src/components/Video.vue diff --git a/package-lock.json b/package-lock.json index 270309a..f4cb4ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,6 @@ "npm-run-all": "^4.1.5", "prettier": "^2.8.4", "typescript": "~4.8.4", - "vite": "^4.1.4", "vue-tsc": "^1.2.0" } }, @@ -485,6 +484,7 @@ "os": [ "android" ], + "peer": true, "engines": { "node": ">=12" } @@ -501,6 +501,7 @@ "os": [ "android" ], + "peer": true, "engines": { "node": ">=12" } @@ -517,6 +518,7 @@ "os": [ "android" ], + "peer": true, "engines": { "node": ">=12" } @@ -533,6 +535,7 @@ "os": [ "darwin" ], + "peer": true, "engines": { "node": ">=12" } @@ -549,6 +552,7 @@ "os": [ "darwin" ], + "peer": true, "engines": { "node": ">=12" } @@ -565,6 +569,7 @@ "os": [ "freebsd" ], + "peer": true, "engines": { "node": ">=12" } @@ -581,6 +586,7 @@ "os": [ "freebsd" ], + "peer": true, "engines": { "node": ">=12" } @@ -597,6 +603,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -613,6 +620,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -629,6 +637,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -645,6 +654,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -661,6 +671,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -677,6 +688,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -693,6 +705,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -709,6 +722,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -725,6 +739,7 @@ "os": [ "linux" ], + "peer": true, "engines": { "node": ">=12" } @@ -741,6 +756,7 @@ "os": [ "netbsd" ], + "peer": true, "engines": { "node": ">=12" } @@ -757,6 +773,7 @@ "os": [ "openbsd" ], + "peer": true, "engines": { "node": ">=12" } @@ -773,6 +790,7 @@ "os": [ "sunos" ], + "peer": true, "engines": { "node": ">=12" } @@ -789,6 +807,7 @@ "os": [ "win32" ], + "peer": true, "engines": { "node": ">=12" } @@ -805,6 +824,7 @@ "os": [ "win32" ], + "peer": true, "engines": { "node": ">=12" } @@ -821,6 +841,7 @@ "os": [ "win32" ], + "peer": true, "engines": { "node": ">=12" } @@ -2073,6 +2094,7 @@ "integrity": "sha512-/jUywtAymR8jR4qsa2RujlAF7Krpt5VWi72Q2yuLD4e/hvtNcFQ0I1j8m/bxq238pf3/0KO5yuXNpuLx8BE1KA==", "dev": true, "hasInstallScript": true, + "peer": true, "bin": { "esbuild": "bin/esbuild" }, @@ -2640,6 +2662,7 @@ "os": [ "darwin" ], + "peer": true, "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } @@ -4000,6 +4023,7 @@ "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.20.7.tgz", "integrity": "sha512-P7E2zezKSLhWnTz46XxjSmInrbOCiul1yf+kJccMxT56vxjHwCbDfoLbiqFgu+WQoo9ij2PkraYaBstgB2prBA==", "dev": true, + "peer": true, "bin": { "rollup": "dist/bin/rollup" }, @@ -4463,6 +4487,7 @@ "resolved": "https://registry.npmjs.org/vite/-/vite-4.3.1.tgz", "integrity": "sha512-EPmfPLAI79Z/RofuMvkIS0Yr091T2ReUoXQqc5ppBX/sjFRhHKiPPF/R46cTdoci/XgeQpB23diiJxq5w30vdg==", "dev": true, + "peer": true, "dependencies": { "esbuild": "^0.17.5", "postcss": "^8.4.21", diff --git a/package.json b/package.json index 35c9b37..ffa0e91 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,6 @@ "npm-run-all": "^4.1.5", "prettier": "^2.8.4", "typescript": "~4.8.4", - "vite": "^4.1.4", "vue-tsc": "^1.2.0" } } diff --git a/src/App.vue b/src/App.vue index e09c96a..ff1006f 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,19 +1,32 @@ diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue index fbc3555..d74e290 100644 --- a/src/components/HelloWorld.vue +++ b/src/components/HelloWorld.vue @@ -8,8 +8,12 @@ defineProps<{

{{ msg }}

- If you came here for the video - which I previously said this site redirects to, it's - right here. + If you came here for the video - which I previously said this site redirects to, it's + over on YouTube, or, of course, you can just watch it embedded here (using + an Invidious instance hosted on catvibers.me instead + of YouTube)

diff --git a/src/components/TheWelcome.vue b/src/components/TheWelcome.vue deleted file mode 100644 index 7fdd963..0000000 --- a/src/components/TheWelcome.vue +++ /dev/null @@ -1,5 +0,0 @@ - \ No newline at end of file diff --git a/src/components/Video.vue b/src/components/Video.vue new file mode 100644 index 0000000..1ab0894 --- /dev/null +++ b/src/components/Video.vue @@ -0,0 +1,9 @@ +