Kyle Smith
Kyle Smith
If you are using Nuxt 3, the plugin step is replaced with: ```ts import VueSignaturePad from 'vue-signature-pad' export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(VueSignaturePad); }) ``` > > By the way,...
I only had the commands: `firebase emulators:start --import=.sparrow-design/emulator-temporary` `firebase emulators:export .sparrow-design/emulator-export` I also run a lot of fs commands to overwrite (and save) the emulator folder every minute. So that...
Thank you for the more-thorough reproduction, I overlooked the component package name that needed to be edited (and other goofs like leaving in `node_modules`), those have been fixed in the...
I needed the documentation as well. I found that the documentation can be found here: https://github.com/AbelHeinsbroek/chartjs-plugin-crosshair/blob/master/docs/options.md
Got stuck on this for a little, this is a much needed change to documentation!
Found out where the schema options are: https://github.com/hdoro/sanity-plugin-external-dam/blob/main/packages/core/src/components/Uploader/Uploader.tsx#L16 Here it is for future reference for myself and others.
Just using it now, I have more stuff to do since it's not working the best. There was a typing error and the options wasn't getting passed down, I fixed...
I want to preface that this is not ready to merge. I just need a go-ahead before I spend some time to patch up this pull request.
I got the issue as well, I cloned the project locally to debug and found out the glob matching couldn't find the files. I made the following change and it...
I added the following to `nuxt.config.ts`: ```ts export default defineNuxtConfig({ plugins: [ { src: '~/plugins/qrcode-vue3', ssr: false, mode: 'client' }, ], ... }) ``` While my `plugins/qrcode-vue3.ts` looks like this:...