zhaoyi
Results
1
comments of
zhaoyi
我用了这个插件 [vite-plugin-external](https://github.com/fengxinming/vite-plugins/tree/37e3173ff5e561299ae8cf93658c19ad2ae3039e/packages/vite-plugin-external)解决了上述问题。 ```ts import createExternal from 'vite-plugin-external'; // ... plugins: [ createExternal({ interop: 'auto', // 这个声明很重要 externals: { react: 'React', 'react-dom': 'ReactDOM', } }) ] ```