Farnabaz
Farnabaz
@yoyo837 Do you mind providing reproduction sample using [template.nuxtjs.org](template.nuxtjs.org)?
Changing `$moment.defaultFormat` will do the trick. Checkout https://github.com/moment/moment/issues/3176#issuecomment-638011241
Move `defaultTimezone` outside of `timezone`. Checkout [configuration docs](https://github.com/nuxt-community/moment-module#set-default-time-zone)
Hey, Sorry for the late response, add `moment-timezone` to `types` array inside `tsconfig.json` file ```js { // ... "compilerOptions": { // ... "types": [ "@nuxt/types", "@nuxtjs/moment", "moment-timezone" ] } }...
Hey, Sorry for the late response. You can change timezone of a moment instance by calling `tz` function ```js const date = this.$moment() date.tz("America/Los_Angeles") ``` OR change default timezone using...
@LiamDotPro Sorry for the late response, could you create a reproduction sample? From the error, it seems that this isn't related to nuxt-ts.
@derevandal Sorry for the late response . Your issue is related to nuxt/storybook and should fix with the latest release [v3.3.1](https://github.com/nuxt-community/storybook/releases/tag/v3.3.1).
Hey, Sorry for the late response and Thank you for great explanation. Will consider these improvements in next major release.
> All SVGs require some text alternative, so on , while the desc prop can remain optional, have you considered making the title prop a required prop? Keeping title as...
Sorry for the late response. For now, there are no options to do this in the module. But we can discuss this possibility in future versions