Cesar Benavides

Results 26 comments of Cesar Benavides

@theodesp Having the same issue here: https://github.com/NoisyTrumpet/TexasYesProject/blob/main/src/features/BlockReturner.tsx So you're saying is that maybe if we change the generic `image` or `title` fields to something more specific like `heroTitle` or something...

@kodai3 found a quick hack by using this webpack alias: ```` return { ...config, resolve: { ...config.resolve, alias: { ...config.resolve.alias, "next/future/image$": "next/image", // styles: path.resolve(__dirname, "../src/lib/"), }, }, }; ````

Yeah I guess the storybook add on will need to be updated. Otherwise we'd have to style for future and non future variants which would be annoying.

@chenmoonmo this is caused by the `` component I think. Here it is fixed: https://codesandbox.io/s/loving-fog-5rofxw?file=/src/index.js

@RakulAgn works for me with Typescript example tsconfig: ```` { "compilerOptions": { "target": "es2017", "lib": [ "dom", "dom.iterable", "esnext" ], "downlevelIteration": true, "allowJs": true, "skipLibCheck": true, "strict": false, "forceConsistentCasingInFileNames": true,...

@Maraszynko I would add a `--force` or `--legacy-peer-deps` at the end of the install command

@theodesp I think this is what fixed it so very similar to what you did. From the Headless Wordpress Discord: ```` From what has been worked on here. It seems...

> @TylerBarnes thank you! It’s very sad that there is no work around for this. As I understand that issue exists in every CMS due to current Gatsby architecture. I’m...

> Hi @vstrelianyi, you'll need two PRs to fix the issue: > > #568 on this repo [wp-graphql/wp-graphql-acf#297](https://github.com/wp-graphql/wp-graphql-acf/pull/297) on the acf plugin repo > > Please note the following: >...

@rizwan92 > is there any update ? i am actively looking into this thread Doing something like this as a quick hacky fix: `sitemap.xml.ts` in the `pages` directory with the...