Build fail

So I did some changes in my code (added elements, json data, css and nuxt icons) and somehow my app wont build anymore. Also I dont get why. Someone understands this or can read where the error is? Heres the errors I get: (attached)
2 Replies
kapa.ai
kapa.ai4d ago
Hi @Displayray. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the knowledge sources, it appears you're encountering a build error in your Nuxt application related to the ohash package. This is a known issue that occurs when there are mismatching versions of the ohash dependency in your project. The specific error you're seeing is:
[nitro 10:24:11] ERROR RollupError: .nuxt/dist/server/_nuxt/index-BER0xk3b.js (8:18): "diff" is not exported by "node_modules/ohash/dist/index.mjs", imported by ".nuxt/dist/server/_nuxt/index-BER0xk3b.js".
[nitro 10:24:11] ERROR RollupError: .nuxt/dist/server/_nuxt/index-BER0xk3b.js (8:18): "diff" is not exported by "node_modules/ohash/dist/index.mjs", imported by ".nuxt/dist/server/_nuxt/index-BER0xk3b.js".
This happens because your project has multiple versions of ohash installed - specifically, it's trying to use a function (diff) from version 1.x, but another part of your dependencies has pulled in version 2.x which doesn't export this function. Solutions: 1. Override the ohash version in your package.json: Add an override to force all dependencies to use the same version of ohash:
"overrides": {
"ohash": "1.1.5"
},

"overrides": {
"ohash": "1.1.5"
},

This solution was reported to work by a contributor in a similar situation in this GitHub issue. 2. Remove problematic modules: As mentioned in the same GitHub issue, removing certain UI modules like @nuxt/ui might resolve the issue if that's what's causing the version conflict. 3. Check for transpilation needs: In some cases, you might need to add certain packages to your build.transpile array in your nuxt.config.js file if they're importing assets that need processing. The issue is likely related to dependency conflicts rather than your actual code changes. This is a common problem when using multiple Nuxt modules that depend on different versions of the same package. After implementing one of these solutions, run npm install (or your package manager's equivalent) and try building again. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai4d ago
<@465462991840739341> Kapa.ai is still learning and improving, please let me know how I did by reacting below.

Did you find this page helpful?