-
Setup
App won't compile and throws the following error:
ExpectI would expect that the app compiles successfully Info"next": "^12.0.4", |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 4 replies
-
See #7379 (comment) |
Beta Was this translation helpful? Give feedback.
-
As the documentation points out: I have to create a file called This file has to be imported in import { config, list } from '@keystone-6/core';
import { document } from '@keystone-6/fields-document';
import { componentBlocks } from './component-blocks';
export default config({
lists: {
ListName: list({
fields: {
fieldName: document({
ui: {
views: require.resolve('./component-blocks')
},
componentBlocks,
}),
},
}),
},
}); I guess the problem is the
I guess this is resolved like this by keystone… There is no input like that in my code. I use a near fresh install of nextjs with keystone in embeded mode. |
Beta Was this translation helpful? Give feedback.
-
Had that same problem a few days ago. I don't know why it's happening but using |
Beta Was this translation helpful? Give feedback.
-
@DPangerl , did you manage to find out the answer? I am facing the exact same issue |
Beta Was this translation helpful? Give feedback.
-
Hi @DPangerl, @hhimanshu and @cdguglermbb, This problem, #7246 and #7349 should be resolved with our changes in #7289. We intend to release a new version of Keystone within the next 24 hours, or early next week. |
Beta Was this translation helpful? Give feedback.
Hi @DPangerl, @hhimanshu and @cdguglermbb,
This problem, #7246 and #7349 should be resolved with our changes in #7289.
We intend to release a new version of Keystone within the next 24 hours, or early next week.
Please post here or open another issue if this isn't resolved with that release.