fengxinming / vite-plugins

Some custom plugins for vitejs.
https://fengxinming.github.io/vite-plugins/
MIT License
70 stars 6 forks source link

打包后代码里还存在排除包文件 #12

Open huangjihua opened 1 year ago

huangjihua commented 1 year ago

image

fengxinming commented 1 year ago

@huangjihua 可以具体描述一下怎么使用的吗?

是否类似以下配置

export default defineConfig({
  plugins: [
    createExternals({
      externals: {
        react: 'React',
        'react-dom': 'ReactDOM',
        'react-router': 'ReactRouter',
        'react-router-dom': 'ReactRouterDOM'
      }
    })
  ]
});

确认一下react-router有没有排出,最好贴一下你的配置