14 lines
409 B
Plaintext
14 lines
409 B
Plaintext
---
|
|
import type { videoConfig } from "@interfaces/video.ts";
|
|
|
|
const config: videoConfig = Astro.props.videoConfig;
|
|
---
|
|
|
|
<iframe
|
|
class="h-128 w-full max-w-1/2"
|
|
src={config.videoPath}
|
|
title={config.videoTitle ?? ""}
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
|
referrerpolicy="strict-origin-when-cross-origin"
|
|
allowfullscreen></iframe>
|