From 28911ad0b6429d1f3b6c77e87f38ddb7b48416b9 Mon Sep 17 00:00:00 2001 From: NK Date: Fri, 28 Apr 2023 11:18:10 +0100 Subject: [PATCH] fix --- next.config.js | 4 ++-- package.json | 3 +-- postcss.config.js | 2 +- tailwind.config.js | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/next.config.js b/next.config.js index a843cbe..91ef62f 100644 --- 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 index 7c3b625..3b43a6e 100644 --- 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 index 12a703d..60c5eec 100644 --- 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 index 3027301..80c59c5 100644 --- 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: {}, },