Hans-Jørgen Vedvik

Results 48 comments of Hans-Jørgen Vedvik

The plan is to have an SSR/generator API with options for prefetching etc. It's not ready yet, but we accepted a temporary solution in #716 that you could try out...

The `@gridsome/source-graphql` plugin only fetches a remote GraphQL schema and merges it into the GraphQL schema in Gridsome. So it doesn't actually fetch any content, which means that Gridsome won't...

This is awesome @u12206050! I have been looking into webpack 5 myself lately. The only blocker I ran into was an issue with [`vue-ssr-webpack-plugin`](https://github.com/vuejs/vue/pull/11863). But I'll take a look at...

Btw, we are using [Conventional Commits](https://www.conventionalcommits.org/) to auto-generate the changelog based on individual commits or squashed PR's. Braking changes are added by writing `BREAKING CHANGE: ...` in the commit body....

It's only the `CHANGELOG.md` files in each package that are auto-generated. Its generated based on the commit messages, like `fix: ...` and `feat: ...` etc. But you don't need to...

@u12206050 A new version of `vue-server-renderer` with webpack 5 support was released a couple of weeks ago. So I went ahead and finished the [feat/webpack-5](https://github.com/gridsome/gridsome/tree/feat/webpack-5) I started on. I hope...

Thanks for debugging this, @tstriker. I did some more tests yesterday and noticed that the order of the nodes affected the `routes.js` file in some cases. I fixed that by...

Yes, that would be nice to have. I'll add this to the todo-list :)

Yes, the `collection.addReference()` method is limited to root fields, unfortunately. You can, however, use the `store.createReference(typeName, id)` method to have a reference at any level if you are creating the...

@freshyill Yes, it is :) Just working on a few other minor things that also will be in the next release these days. So hopefully it will be ready pretty...