This commit is contained in:
NK 2023-04-28 11:18:10 +01:00
parent dd0e43f77e
commit 28911ad0b6
4 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
};
module.exports = nextConfig
module.exports = nextConfig;

View file

@ -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",

View file

@ -1,6 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
tailwindcss: { config: "./tailwind.config.js" },
autoprefixer: {},
},
};

View file

@ -1,5 +1,5 @@
module.exports = {
purge: ["./src/pages/*.{js,ts,jsx,tsx}"],
content: ["./src/pages/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},