Hans-Jørgen Vedvik
Hans-Jørgen Vedvik
I have most parts in Gridsome working with Vue 3 in a local branch. The only thing that isn't implemented is `vue-meta`, which haven't published a package for v3 yet....
Good idea, @scratchmex! At the moment, I think the only thing left to migrate is the `vue-meta` integration. Still waiting for a package that is compatible with Vue 3 from...
@cyfung1031 Yes, we are working on it :) We will probably come with some more information later this autumn.
Fragments would be great! We could include them automatically by loading them from a specific folder or file. Or let developers import them into each query. Something like this package:...
You must prefix the variables with `GRIDSOME_` to access them in the browser bundle (usually all files in the `src` folder). Read more about it in the [Usage in the...
@GonzaloHirschToptal You can try to wrap your code in `if (process.isServer) { ... }` to ensure it only runs on the server. Environment variables without the `GRIDSOME_` prefix should be...
No, unfortunately :) It might be doable with the `` HTML element, but it would require some changes in the webpack config, etc, if it is possible.
Gridsome generates the HTML in a Node.js environment, where `document` and `window` don't exist. You can use `process.isClient` to determine if the component is rendered in Node.js. Something like this:...