Cameron R
Cameron R
Might be something to do with encoding or escaping. But I prevented all my locales/*.json files redownloading for no apparent reason every time by deploying all the local files which...
Was there any discussion or issues surrounding this? I would love the ability to request a plain text version of block content at the GraphQL data store level, whether it's...
Looks like the compatibility dependencies are blocking this. I recently started using WindiCSS instead. So far so good. Just another option to try/consider depending on the needs of your project....
Some source plugins handle this with a listener that will update the data store while being served. For example, `watchMode` in this plugin: https://gridsome.org/plugins/gridsome-source-sanity. But nothing 'out of the box'...
Gridsome. You can't even SSG on the current Nuxt 3.
Same - Gridsome just works and does what I need it to very well. There are things I'd like to use which require Vue 3 but it's by no means...
Add a click handler on the standard ion-menu-toggle button. Make sure 'auto-hide="false"' is set on the toggle so the button is always visible even in split pane mode. In the...
You can return an array of 'link' as well as 'meta'. An example below. I might have added siteUrl to the config to access it via a static query like...
From your code, script will be like: ``` vue export default { metaInfo() { return { title: this.$page.documentation.title, // just include a link property in this returned object here link:...