Open dmoyadev opened 2 years ago
Same here, I'm getting this error after making a npm update
to 0.9.79
Same here. Can't get it to work anymore. Not even with downgrading. Did that work for anybody else? How did you downgrade exactly?
Same here. Can't get it to work anymore. Not even with downgrading. Did that work for anybody else? How did you downgrade exactly?
Downgrade to v0.9.67
, you just need to set the exact version in your package.json
, delete the node_modules
directory and run npm install
again.
It does not even work for me with version v0.9.67 (Nuxt 3 3.0.0-rc.11). I also tried adding @googlemaps/markerclusterer in the nuxt.config.ts transpile.
nuxt.config.ts
build: {
extractCSS: true,
transpile: ['swiper', 'shipit-cli', '@fawmi/vue-google-maps', '@googlemaps/markerclusterer']
}
Does anyone know how to do this?
EDIT: this problem only exists locally, in production everything works fine!
I have the same issue with Nuxt 3.0.0-rc.10 & package v0.9.79. Tried to downgrade to 0.9.67 but same issue. As @mrc-bsllt mentioned, this works in production but not locally. Any lead on that ?
I have the same issue with Nuxt 3.0.0-rc.10 & package v0.9.79. Tried to downgrade to 0.9.67 but same issue. As @mrc-bsllt mentioned, this works in production but not locally. Any lead on that ?
Try fixing the version, this way : "@fawmi/vue-google-maps": "0.9.67"
I have the same issue with Nuxt 3.0.0-rc.10 & package v0.9.79. Tried to downgrade to 0.9.67 but same issue. As @mrc-bsllt mentioned, this works in production but not locally. Any lead on that ?
Try fixing the version, this way :
"@fawmi/vue-google-maps": "0.9.67"
This process worked :
Thanks !
hi @fawmi what is the package maintenance status?
Really hope that Fawmi keeps this maintained, this package is the best to manipulate maps I found so far.
I have the same issue with Nuxt 3.0.0-rc.10 & package v0.9.79. Tried to downgrade to 0.9.67 but same issue. As @mrc-bsllt mentioned, this works in production but not locally. Any lead on that ?
Try fixing the version, this way :
"@fawmi/vue-google-maps": "0.9.67"
This process worked :
- removed node_modules and the yarn lock file
- changed the version to what you said in the package.json file
- installed the package and ran the site again
Thanks !
My problem was that I had not removed '^' from the package version. I changed this "@fawmi/vue-google-maps": "^0.9.67" for this "@fawmi/vue-google-maps": "0.9.67", and it works!
Can you try this solution https://github.com/fawmi/vue-google-maps/issues/148#issuecomment-1235143844
@tahaipek with vite 3 don't work
I'm using Vite 3.1.3. This solution worked for me.
Can you try this solution #148 (comment)
I can confirm this fixes the problem, thank you.
Is it possible to sponsor the development somehow?
I'm using Vite 3.1.3. This solution worked for me.
Its working in v3.1.3
for me as well, thank you so much!
Is it confirmed that it is this the expected behavior? I believe we need a confirmation by @fawmi that this repo is still being maintaned. This was the best Google Maps repo I found and it would be awesome if you guys keep it up with it.
I agree with you too, @NathanAP . I hope @fawmi continues to developed this package.
Can you try this solution #148 (comment)
Worked for me, thanks.
Thank you so much for the solution. Worked for me.
Can you try this solution #148 (comment)
Worked for me, thanks.
perfect, it worked for me too.
Thank you. Worked for me :)
Follow below process
Guys, please read https://github.com/fawmi/vue-google-maps/issues/159
159
This worked for me as well.
Thanks!
Does not work with Vite 4.2.0
I have the same issue with Nuxt 3.0.0-rc.10 & package v0.9.79. Tried to downgrade to 0.9.67 but same issue. As @mrc-bsllt mentioned, this works in production but not locally. Any lead on that ?
Try fixing the version, this way :
"@fawmi/vue-google-maps": "0.9.67"
This process worked :
- removed node_modules and the yarn lock file
- changed the version to what you said in the package.json file
- installed the package and ran the site again
Thanks !
This worked for me but the map details are hidden give the attached SS a look "@fawmi/vue-google-maps": "0.9.67", "nuxt": "^3.11.2",
vite.config.js
optimizeDeps: {
include: [
"@fawmi/vue-google-maps",
"fast-deep-equal",
],
},
Describe the bug With version 0.9.79, there is something broken related to default exports, as I'm receiving this message in the console that breaks everything in my app:
The requested module '/node_modules/fast-deep-equal/index.js?v=dfdb27d1' does not provide an export named 'default'
It is fixed once I downgraded to 0.9.67