Muris Ceman

Results 99 comments of Muris Ceman

Hi! This project is designed solely for TypeScript usage, and there are no plans to provide JavaScript support in the future.

Hey @caiotarifa, the following resolvers need to be slightly refactored and tested to support `.js` extensions: - [collections](https://github.com/pruvious/pruvious/blob/main/src/runtime/collections/collection.resolver.ts) - [dashboard](https://github.com/pruvious/pruvious/blob/main/src/runtime/dashboard/dashboard.resolver.ts) - [field](https://github.com/pruvious/pruvious/blob/main/src/runtime/fields/field.resolver.ts) - [hook](https://github.com/pruvious/pruvious/blob/main/src/runtime/hooks/hook.resolver.ts) - [translatable-strings](https://github.com/pruvious/pruvious/blob/main/src/runtime/translatable-strings/translatable-strings.resolver.ts) Additionally, the Nuxt layers...

Hey, thank you for your kind word! Here's an example of how to extend prebuilt translatable strings: ```ts import { defineTranslatableStrings } from '#previous' import { standardTranslatableStringsDefinition } from '#previous/standard'...

Actually, I think I got your question wrong. Let me try this quickly with a layers setup.

So, there were actually two problematic issues: 1. I forgot to use `ignoreDuplicate` in the translatable strings resolver when resolving duplicate files from layers (intended behavior). This is now fixed...

I believe the image is originally in landscape orientation and may have been automatically rotated in your image viewer. Try re-exporting it from Figma (or any other tool) and uploading...

Hey @SuddenDev! Thank you for reporting the bug. The `EditLink.vue` component, displayed in the bottom right corner of the website when you're logged into the dashboard, was causing this issue....

No problem! To get the prefix, simply use `useLanguage()`. ```ts import { prefixPrimaryLanguage, primaryLanguage } from '#pruvious' import { useLanguage } from '#pruvious/client' const language = useLanguage() const urlPrefix =...

Hey @SuddenDev! I just tried the `nuxt-svgo` module, and it only works if I set the `defaultImport` to something like `'component'`. I'm not sure what causes the error, but I...

Hey, @Jchegenye! It's great that you've found a fix for using `nuxt-svgo`. You can replace `Head.vue` more elegantly by specifying a path to a custom Head component in your `nuxt.config.ts`...