youtube-downloader

Simple Next.js website and interface to download YouTube videos to mp3 or mp4 files with URLs
git clone https://codeberg.org/night0721/youtube-downloader
Log | Files | Refs | README | LICENSE

_document.tsx (233B)


      1 import { Html, Head, Main, NextScript } from "next/document";
      2 
      3 export default function Document() {
      4   return (
      5     <Html lang="en">
      6       <Head />
      7       <body>
      8         <Main />
      9         <NextScript />
     10       </body>
     11     </Html>
     12   );
     13 }