Open foxilated opened 1 year ago
Similar issue here index.mjs?v=bbe42651:18 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'Howl')
I have a similar configuration
Any updates? Same issue no matter how I set it up :D
same
Any updates? Got same issue, i use nuxt@3.9.1
Same, i'm using nuxt@^3.9.3
Add 'howler' to your devDependencies and in vite.optimizeDeps.include
seems to resolve this issue
export default defineNuxtConfig({
// nuxt config......
vite: {
optimizeDeps: {
include: ['howler']
}
}
}
Same here, i use nuxt 3 and just got Cannot read properties of undefined (reading 'Howl')
. Any workaround?
Add 'howler' to your devDependencies and in
vite.optimizeDeps.include
seems to resolve this issueexport default defineNuxtConfig({ // nuxt config...... vite: { optimizeDeps: { include: ['howler'] } } }
worked for me, nuxt@3.13
Uncaught (in promise) TypeError:
My code:
my nuxt.config.ts:
My package.json: