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

commit 28911ad0b6429d1f3b6c77e87f38ddb7b48416b9
parent dd0e43f77e3ba25c3624310fd60352f74fb708fa
Author: NK <[email protected]>
Date:   Fri, 28 Apr 2023 11:18:10 +0100

fix

Diffstat:
Mnext.config.js | 4++--
Mpackage.json | 3+--
Mpostcss.config.js | 2+-
Mtailwind.config.js | 2+-
4 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/next.config.js b/next.config.js @@ -1,6 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, -} +}; -module.exports = nextConfig +module.exports = nextConfig; diff --git a/package.json b/package.json @@ -5,8 +5,7 @@ "scripts": { "dev": "next dev", "build": "next build", - "start": "next start", - "lint": "next lint" + "start": "next start" }, "dependencies": { "@types/node": "18.16.1", diff --git a/postcss.config.js b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = { plugins: { - tailwindcss: {}, + tailwindcss: { config: "./tailwind.config.js" }, autoprefixer: {}, }, }; diff --git a/tailwind.config.js b/tailwind.config.js @@ -1,5 +1,5 @@ module.exports = { - purge: ["./src/pages/*.{js,ts,jsx,tsx}"], + content: ["./src/pages/**/*.{js,ts,jsx,tsx}"], theme: { extend: {}, },