gruhn / vue-qrcode-reader

A set of Vue.js components for detecting and decoding QR codes.
https://gruhn.github.io/vue-qrcode-reader
MIT License
2.03k stars 330 forks source link

CDN download link returns file does not exist #409

Closed yannic-bruegger closed 5 months ago

yannic-bruegger commented 5 months ago

Describe the bug When trying to download the Without-NPM-Version linked in README.md, unpackage shows that the file is not there.

To Reproduce Click the download link in README.md https://unpkg.com/vue-qrcode-reader/dist/vue-qrcode-reader.umd.cjs

Message

Cannot find "/dist/vue-qrcode-reader.umd.cjs" in vue-qrcode-reader@5.5.1

gruhn commented 5 months ago

Ah yes, should be .js instead of .cjs:

https://unpkg.com/vue-qrcode-reader/dist/vue-qrcode-reader.umd.js

yannic-bruegger commented 5 months ago

Created a tiny PR, thanks! :) https://github.com/gruhn/vue-qrcode-reader/pull/411