Kainkainkain

Results 10 comments of Kainkainkain

I have the same issue, quick solution is paste in vscode an replace open tag with `` and then replace` ` with just `` and then replace all `` with...

Just me that wants to render pages and child pages with correct routes matching WordPress permalinks so WordPress users can use the CMS headless without restriction? I'm going to read...

I feel like this is the answer but I don't understand the documentations context, like where I would put my modified version of the code- in the plugins array? https://gridsome.org/docs/routing/#routing-for-custom-data

I have been able to successfully build page and there routes without the wordpress starter, So now I can build pages and routes, but I have to duplicate all the...

@daviddarke and did this handle page parents and page depth? e.g. like /sections/about-us/index.html /sections/about-us/corporate-info/index.html /sections/about-us/corporate-info/annual-report/index.html

I should have shared the solution i worked out: data.allPages.edges.forEach(({ node }) => { createPage({ path: `${node.link}`, component: './src/components/Page.vue', context: { id: node.id, slug: node.name, title: node.title, content: node.content, parentid:...

Same - the readme seems out of date. I got it working by downloading https://github.com/storyblok/storyblok-js-client/blob/master/source/schema.js and importing it on the page ``` import MySchema from '$lib/utils/mySbSchema.js' const resolver = new...

@hjvedvik I'm a little confused, So I am using forestry.io to edit .md files on github. I am using 'blocks' - reusable partials, which then i feed to gridsome to...

I think this is in the example in the readme? ` {#each comments as comment} {/each}`

I installed postgres locally, connected it locally, then ran the npx medusa command locally which is where it does work. Got my admin login, tested. Then I manually copied the...