-
Notifications
You must be signed in to change notification settings - Fork 273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Receiving Cannot read properties of undefined (reading 'get') on version 0.6.1
#481
Comments
Cannot read properties of undefined (reading 'get') on version 0.6.1
I am having the same problem (upgraded from 0.6.0 to 0.6.1) I am on nuxt bridge |
I am having the same problem (upgraded from 0.6.0 to 0.6.1) |
I am having the same problem (upgraded from 0.6.0 to 0.6.1) |
Bump |
same happened with me after upgraded 0.6.0 to 0.6.1 using nuxt 2 |
same situation happenning here on Nuxt 2.15.8 |
Traceback seems related to the Can you please try to recreate lockfile ( |
Edit: Nope, sorry, did not solve it after all :/ |
I'll try to come up with a reproduction |
I am having the same problem |
Same issue here with 0.6.1. Works fine with 0.6.0. |
Anybody care to post their nuxt config and package.json? I'm currently trying to reproduce this issue in a fresh repo, but am not able to. Would help to figure out commonalities such that the issue is easier to pinpoint. |
I am having the same issue since the update from 0.6.0 to 0.6.1 running nuxt 2. Here my package.json
And here my nuxt.config.js
|
Thanks! I can already make out tailwind and nuxt content, which we are also using. |
I think it's related to Rollup: function _interopNamespace(e) {
if (e && e.__esModule) return e;
const n = Object.create(null);
if (e) {
for (const k in e) {
if (k !== 'default') {
const d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : { // <--- this breaks since d is undefined
enumerable: true,
get: function () { return e[k]; }
});
}
}
}
n["default"] = e;
return Object.freeze(n);
} Temporary fix Adding optional chaining solves the issue in my case and lets the build succeed: The |
I'm having this same problem —
After much consternation, the workaround from @riccardolardi above has fixed it. However this won't provide much help once I try to deploy through Netlify as it'll grab the regular package! |
Same issue here, working locally but cannot deploy through Netlify |
@MichaelPrecel Seems like we have almost no packages in common, so the issue most probably really lies with nuxt or nuxt-image rollup. |
Exactly the same problem here! |
Hi all, rolling back to 0.6.0 from 0.6.1 has resolved the issue! |
Nuxt 2.15.8 I seem to get this error with 0.6.1, on a new project, when I make changes in nuxt.config.js On an existing project, upgrading to 0.6.1 gives me constant error, and only downgrading to 0.6.0 solves it. |
The issue should be solved in |
Version 0.6.1 broke something when running
nuxt generate
and I'm not sure what it is.Please see the error I get below:
Nuxt version: 2.15.8
The text was updated successfully, but these errors were encountered: