stefanprobst
stefanprobst
@ikx94 the markdoc/mdx field *does* allow setting image options: ```ts content: fields.mdx({ label: "Content", options: { image: { publicPath: "/assets/", directory: "public/assets/", }, }, }); ```
> is there any way to adjust image sizing when added through editor? i don't think this is possible currently. you could open a new issue with a feature request?
would you accept a pr to support an additional storage config option? ```ts { kind: "github", repo: { owner: "stefanprobst", name: "keystatic-test" }, commitMessages: { update({ path }) { return...
i have been running into this issue as well, on linux (so it doesn't seem to be WSL-related). @emmatown could you clarify the reason for https://github.com/Thinkmill/keystatic/blob/main/packages/keystatic/src/app/ui.tsx#L268-L278 -- thanks!
@huozhi could you clarify whether this is indeed an issue, or if this is intended behavior? thank you!
ok so the [docs](https://nextjs.org/docs/app/api-reference/next-config-js) state: ``` next.config.js is a regular Node.js module ... It gets used by the Next.js server and build phases, and it's not included in the browser...
thanks for the explanation @huozhi! i guess this is working as intended then.