Wassup Guys, I am currently working on an anime page.
However, I have NUXTJS3 as setup together with Tailwinds Css.
My problem is, that when someone is accessing the page directly, the content is not loading.
Getting redirected with < NuxtLink > works, check the screeshots below.
nuxt.config.js
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
export default defineNuxtConfig({
build: {
postcss: {
postcssOptions: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
},
},
css: [
"~/assets/css/tailwind.css",
'~/assets/scss/main.scss'
],
})