This is an automated email from the ASF dual-hosted git repository. kaxilnaik pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 4673170d6c7464d3942f8a38764d52d6edef83d7 Author: Pierre Jeambrun <[email protected]> AuthorDate: Wed Sep 10 17:52:44 2025 +0200 Add react-dom to default plugin external libraries (#55451) (cherry picked from commit f80d3084b45d8b86f1a55ce7925848cc68fae8bc) --- dev/react-plugin-tools/react_plugin_template/vite.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/dev/react-plugin-tools/react_plugin_template/vite.config.ts b/dev/react-plugin-tools/react_plugin_template/vite.config.ts index dc9384ff2bc..7c3dd86fc58 100644 --- a/dev/react-plugin-tools/react_plugin_template/vite.config.ts +++ b/dev/react-plugin-tools/react_plugin_template/vite.config.ts @@ -42,6 +42,7 @@ export default defineConfig(({ command }) => { output: { globals: { react: "React", + "react-dom": "ReactDOM", "react/jsx-runtime": "ReactJSXRuntime", }, },
