Nuxt

N

Nuxt

Nuxt Community Chat Server

Join

Nuxt content style and prose

I'm starting a new project with nuxt, content, Nuxt UI and i18n and everything works, but prose styling, anchor and related default styling is not applied. I download a clean starter template without nuxt ui and everything works fine with the default styles is applied. Is this expected with nuxt ui (non pro)?

"Teleport" is imported from external module "..." but never used in "..."

[1:24:41 PM] WARN "Teleport" is imported from external module "file:///home/ubuntu/nuxt-dashboard/node_modules/vue/index.mjs" but never used in "node_modules/@unhead/vue/dist/utils.mjs", "node_modules/@unhead/vue/dist/shared/vue.N9zWjxoK.mjs", "node_modules/@unhead/vue/dist/shared/vue.nvpYXC6D.mjs", "node_modules/@unhead/vue/dist/shared/vue.BYLJNEcq.mjs", "node_modules/@unhead/vue/dist/server.mjs", "node_modules/@vueuse/shared/index.mjs", "node_modules/@vueuse/core/index.mjs" and "node_modules/quasar/dist/quasar.server.prod.js".
[1:24:41 PM] WARN "Teleport" is imported from external module "file:///home/ubuntu/nuxt-dashboard/node_modules/vue/index.mjs" but never used in "node_modules/@unhead/vue/dist/utils.mjs", "node_modules/@unhead/vue/dist/shared/vue.N9zWjxoK.mjs", "node_modules/@unhead/vue/dist/shared/vue.nvpYXC6D.mjs", "node_modules/@unhead/vue/dist/shared/vue.BYLJNEcq.mjs", "node_modules/@unhead/vue/dist/server.mjs", "node_modules/@vueuse/shared/index.mjs", "node_modules/@vueuse/core/index.mjs" and "node_modules/quasar/dist/quasar.server.prod.js".
I'm not sure why this error pops up, I checked my dependencies, and how I was using Teleport, it just gets autoimported twice in my app. Is it possible I misconfigured something?...

Migration Issue with Nuxt UI 3 and Tailwind Resolution

Hi everyone! I resolved an issue during my migration to Nuxt UI 3 but wanted to get clarity on the underlying cause. Error Encountered:...

[Nuxt UI 3] Cannot find module '#build/app.config' or its corresponding type declarations

I'm using Nuxt UI 3 in my vue(not nuxt) project. When I run vite build, the build will failed and gives me errors like Cannot find module '#build/app.config' or its corresponding type declarations. or Cannot find module '#imports' or its corresponding type declarations.. It seems like many ui components have these two imports but they can't be found in the package.json file or anywhere else. Does this have to do with nuxt not being installed or anything?

How to have the same behavior for fetching data between F5/navigator refresh and navigation

Hello, i want to block the loading/navigation even when using navigateTo from one page to the next, the same as when having a navigator reload. i use useAsyncData in my page and it waits for the whole request when accessing the page, but not when navigating in between 2 pages, i want to wait in both cases...

Limit deployments

How can I make it so that nuxt hub only deploys the latest commit? I don't want/need anything old.

Migrate NuxtUI 2 to 3

I have this error when I migrate NuxtUI v2 to v3 [plugin:vite:vue] [@vue/compiler-sfc] Failed to resolve extends base type. If this previously worked in 3.2, you can instruct the compiler to ignore this extend by adding /* @vue-ignore */ before it, for example: ...

cannot start nuxt after pnpm i

Cannot start nuxt: Cannot resolve module "vite-plugin-vue-tracer/client/record"

Playwright browser wont open

Even though my setup function looks like this: await setup({ host: 'http://localhost:3000', browser: true })...

How to handle active link with hash and i18n module?

I have i18n module installed, I have two locales, es and ro as fallback. Also in navigation I have a links with hash. So I can't rely on router-link-active because it's always there

Return a vue page in server route

export default defineEventHandler(async (event) => { const user = await isAuthenticated(event) if (!user) { throw createError({ statusCode: 401,...

500 error in production

My site runs fine in local dev, but throws a 500 error in production. [request error] [unhandled] [GET] http://localhost:3000/__nuxt_error?error=true&url=%2F&statusCode=500&statusMessage=Server+Error&message=Server+Error TypeError: Cannot read properties of undefined (reading 'split') at isMetaArrayDupeKey (file:///[...]/.output/server/node_modules/unhead/dist/shared/unhead.BaPU1zLf.mjs:5:15)...

Monaco in Nuxt is always empty

I have a nuxt 3 application with the nuxt-monaco-editor module. The editor is displaying, but it is always empty. I already tried to hardcode the value prop of the editor with a given string. Despite it being empty on load, i am able to type text: My component:...
No description

Can't get basic e2e tests working

Is it supposed to be possible to test SPAs using @nuxt/test-utils and vitest? When I run a basic test (createPage, textContent) it doesn't match any text actually shown, what I get back is just a ton of javascript. The test also takes over a hundred seconds before it fails.
No description

Nitro Error Building on CF Pages

I get this error:
[error] [nitro] Error: ENOTDIR: not a directory, stat '/opt/buildhome/repo/node_modules/unenv/dist/runtime/node/punycode.mjs/'
[error] [nitro] Error: ENOTDIR: not a directory, stat '/opt/buildhome/repo/node_modules/unenv/dist/runtime/node/punycode.mjs/'
when trying to build on cloudflare pages. The build worked as recently as yesterday, but does not work anymore after I made entirely unrelated changes. Any ideas? I've tried pinning the unenv version....

CANNOT RESOLVE #app & #imports from vitest into my nuxt-module

Hello everyone, i'm recently working on my own nuxt-module. And I want to add some tests. But I've some imports from "#imports" or "#app" (like useNuxtApp) into my nuxt module, and these type of imports raised some errors when i'm running tests. I tryied to add some alliases into my vitest.config.ts, but nothing changed.

Docker Cant Read Node Module for Nuxt

hello is anyone using nuxt in docker? im trying to run my nuxt project inside docker but it cant read the node_modules i've already try a lot approach but still cant read the node module...
No description

Find nuxt code deployment model

How many code organization models does nuxtjs have, and what is the name of that code organization model by default in nuxt?

Nuxt generate and wrong path

Hi all. Can anyone point me in the right direction for this issue... (see media) the joint-plus package for some reason does not have either relative or absolute path...
No description

Auth session missing!

export const isAuthenticated = async (event: any) => { const { user, error } = await serverSupabaseUser(event); if (error) { console.log("Authentication error:", error);...