Xavier Le Tohic
Xavier Le Tohic
After investigation it seems that `initialValue` has been updated via `setFieldsInitialvalue` in https://github.com/react-component/form/blob/master/src/createFieldsStore.js#L40-L51 but the component is not updated. The input value become visible only on form submit action. Try...
Hi, I found out how to do it: ```js const createContext = (req) => ({ headers: req.headers, }) app.use('/graphql', graphqlHTTP((request) => ({ schema, context: createContext(request), graphiql: true, }))) ``` Then...
Hi @Krakof did you found any workaround for this? I am having the same problem here
+1 tested quickly via this loader and it fixed `window is not defined` using `renderToPipeableStream` from `react-dom/server` with Express ```js { test: /node_modules[\\/]@ant-design[\\/]cssinjs[\\/]es[\\/]hooks[\\/]useHMR\.js$/, // https://github.com/ant-design/cssinjs/issues/133 loader: "string-replace-loader", options: { search:...
The updated RJSF Antd theme now displays placeholders as selectable options (differing from Antd's default behavior), and without an opt-out mechanism in uiSchema, it requires a custom Select widget implementation...
`dev.assetPrefix` helped me discover that the reason why it's not working it's that it does not find assets using `rsbuild dev` and with module federation no matter the prefix I...
Was fixed in dev by setting `config.output.publicPath = '/'` since `config.output.publicPath = 'auto'` still break the injection of assets when more than one sub path is used and the page...
> I tried to change publicPath to / but it is not working for the host app. Did you setup MF via `appendPlugins` like below? ```js tools: { rspack: (config,...
No certain but I think you can find the plugin of the 1.5 from `@rspack/core`'s `container`
@imzisy this issue also happen with the built-in module federation of rsbuild, not only using the external plugin `@module-federation/enhanced/rspack`