#404 error
19 messages · Page 1 of 1 (latest)
hmm the src/app directory was created by default
yes thats because ure using /app directory
which mean you have to go witht he convention of using App Directories
which mean that you can't use _app.js
ahh thx
_app.js belongs to the "Pages Directory" on /src/pages folder
ah ty! now i get this error
the module is installed
did you install tailwind
yes
do you have tailwind.config.js
did u use the nextjs tailwind preset
or did you follow taildind installation on nextjs
also
try reloading npm run dev
yes and I have a config
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [require("daisyui")],
}
?