Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
import { onMounted, ref } from 'vue';
import Player from './components/Player.vue';
import { getVideoDataByHash } from './services/videoLookup';
import { extractHashFromUrl } from 'catalog/VideoShared';

const manifestUrl = ref<string | null>(null);
const title = ref('Microfrontends');
const subtitle = ref('Arquitetura do Futuro');
const description = ref('Aprenda como construir aplicações escaláveis e modulares usando a arquitetura de microfrontends.');

onMounted(async () => {
const hash = extractHashFromUrl();
const videoShared = await import('catalog/VideoShared') as any;
const hash = videoShared.extractHashFromUrl();

if (hash) {
const videoData = await getVideoDataByHash(hash);
Expand Down