Cannot find module @rollup/rollup-linux-x64-musl
When deploying our app to production, which probably runs on a linux machine, I get the following error on Nuxt 3.15.4:
``
[error] Cannot find module @rollup/rollup-linux-x64-musl. npm has a bug related to optional dependencies (https://github.com/npm/cli/issues/4828). Please try
npm i` again after removing both package-lock.json and node_modules directory.
at requireWithFriendlyError (node_modules/rollup/dist/native.js:64:9)...v3 UI alpha throws typescript error [plugin:vite:vue] [@vue/compiler-sfc] Failed to resolve extends
The error is coming from the Button component in line 65 as given below. How can I reslove this issue? I am using latest nuxt and yarn as the package manager
ERROR Internal server error: [@vue/compiler-sfc] Failed to resolve extends base type. 6:18:59 PM
If this previously worked in 3.2, you can instruct the compiler to ignore this extend by adding /* @vue-ignore / before it, for example:
interface Props extends / @vue-ignore */ Base {}...
Help with deploying nuxt module
Hi, I'm trying to release a nuxt module that integrates apple's MusicKit library. It all works and builds properly, however on npmjs I get a package missing error. Any help is appreciated. The library is here: https://github.com/isaact/nuxt-musicKit
Thanks...

Critical vulnerability zlib/zlib1g
Hi all,
I've got a Nuxt 3 app v3.15.1 and snyk.io has found a critical vulnerability about a lib called zlib. I found in my yarn lock that the closest lib I have is minizlib. Which is a denpendecy of minipass-fetch which is also a dependency of make-fetch-happen.
Do you guys have some information about this critical vulnerability?...
okta integration
hello all: I'm trying to add Okta to my Nuxt 3.14 app and am struggling to find good documentation. I've been following along this guide from Okta but am struggling with the redirect page. Does anyone else have a solid example of how to use Okta with NUXT? Thanks in advance!! https://developer.okta.com/docs/guides/sign-into-spa-redirect/vue/main/
Can not get my layer to work
I am missing something, because I can not get my layer (https://github.com/Kazkovy-Kit/ui) get working.
I recieve typescript error:
```
import {LoaderCircle} from "lucide-vue-next";
6 | ...
Formkit undefined _withMods in simple form
The application errored with
500 Cannot read properties of undefined (reading '_withMods')
I assume this is cause bc following component:
```javascript
<template>
<FormKit...nuxt-vuefire http://localhost:3000/api/__session 401 (Unauthorized) on production
ı'm trying to create a nuxt-vuefire app with ssr capability. It works on dev mode but when i build project and serve via node, firebase admin cannot initialize.
`nuxt.config.js
vuefire: {
auth: {...

Converting a project from vue to nuxt and need help
I am developer and I have been working with nextjs and reactjs before and recently I came across a vueJs application and I had to shift it to nuxtjs to use SSR and to have better SEO but the problem is I have never worked with vue or nuxt before and thus I am having alot of problems. I have shifted the files from vue to Nuxt but the routing is dynamic and isn't working properly. The application is like a blog with different articles and each page is created dynamically from an array of objects a...
Very slow "Nuxt Nitro server" build
Hey 🙂
Does any of you know a way to print debug for this step of my Nuxt build?
"> Building Nuxt Nitro server (preset: node-server, compatibility date: 2024-07-29)"...
Hello.
Hi everyone! I'm running into an error with the Vue Inspector plugin that I can't quite figure out. Here's what I'm seeing:
ERROR Internal server error: ENOENT: no such file or directory, open '/node_modules/.pnpm/[email protected]...'
It seems to be having trouble locating the Overlay.vue file in the vue-inspector plugin. I'm using pnpm as my package manager. Has anyone encountered something similar or have suggestions on what might be causing this?...
Nuxt fonts only load one font
Nuxt fonts only load one font when i try to load two font only one working
fonts: {
defaults: {
preload: true...
Async function for `useAsyncData` key param
Hello, I have a composable that returns
useAsyncData
and want to do something like this
```ts
export const useSomeHook = () => {
return useAsyncData(...Nuxt 3 microfrontend integration
I have a Nuxt 3 base app and a Nuxt 3 micro app and I am using "@originjs/vite-plugin-federation". I have imported and loaded the micro app in the base app successfully. The only problem I have is that any component that is using slots, templates or any dynamic content, is not visible. No error is thrown though.
If I use static data and not slots or templates, everything loads perfectly....
Redirects
Is this a valid way to redirect on the server side and will it provide a good redirectCode to search engines?
An old route url would only appear on some other website, not inside the website, so it would always run on the server side.
```ts...
Nuxt Content 3 and docus elements
I would like to replace List.vue to make it work with NuxtContent 3. unwrap() no longer exists, and ContentSlot is also gone. How can I update this code to work with NuxtContent 3?
```javascript
<script lang="ts">
const iconTypeMap = {...
Download and serve NuxtImg's from /public folder when generating with SSR true
I am using NuxtImg with Directus. As we generate an SSG with SSR i want the images i embed coming from Directus to be served locally, from the public folder so there is no connection to Direcuts need in prod.
Is this something i have to build in a hook on my own during build time or is there an existing solution?
THanks!...
NuxtContent 3, how to change data inside script setup
My code:
``javascript
const { data: tabs } = await useAsyncData(
usecases`, () => {
return queryCollection('usecases').all()
})...