ludgart
ludgart
NNuxt
Created by ludgart on 9/22/2024 in #❓・help
How can I disable auto import only for the modules' folder?
Currently, I want to use the modules' folder for my internal modules. How can I disable the auto import feature for the folder?
6 replies
NNuxt
Created by ludgart on 7/17/2024 in #❓・help
RouterRules with features isnt working
Hello, can someone help me with the routeRules? I set up the following route rule:
routeRules: {
'/': {
noScripts: true,
}
},
routeRules: {
'/': {
noScripts: true,
}
},
OR I tried this code:
routeRules: {
'/': {
features: {
noScripts: true,
}
}
},
routeRules: {
'/': {
features: {
noScripts: true,
}
}
},
Both variants don't work. The normal features flag works, but not inside the route rules.
1 replies
NNuxt
Created by ludgart on 1/4/2023 in #❓・help
Cannot read properties of null
Hello, maybe someone can help with the following error code. The error appears after specific time and crash the application. I'm using nuxt 3. I already enabled the debug mode without any more helpful information. [nuxt-app] app:rendered: 0.023ms [nuxt] [request error] [unhandled] [500] Cannot read properties of null (reading 'default') at ./server/chunks/app/server.mjs:3597:34 at fn (./server/chunks/app/server.mjs:148:27) at Object.callAsync (./server/node_modules/unctx/dist/index.mjs:49:19) at callWithNuxt (./server/chunks/app/server.mjs:150:23) at applyPlugin (./server/chunks/app/server.mjs:119:39) at applyPlugins (./server/chunks/app/server.mjs:128:11) at processTicksAndRejections (node:internal/process/task_queues:96:5) at async createNuxtAppServer (./server/chunks/app/server.mjs:4060:7) at async Object.renderToString (./server/node_modules/vue-bundle-renderer/dist/runtime.mjs:172:19) at async ./server/chunks/handlers/renderer.mjs:378:21 Thanks in advance!
4 replies