ci010 / electron-vue-next

A starter template for using vue-next with the electron.
https://ci010.github.io/electron-vue-next/
191 stars 27 forks source link

node_modules/warning/warning.js does not provide an export named 'default' #61

Open baiyuxiong opened 3 years ago

baiyuxiong commented 3 years ago

image run dev加了external报错: node_modules/warning/warning.js does not provide an export named 'default'

ci010 commented 3 years ago

external 是让 rollup 跳过这些 deps,在 production 中不 bundle 他们。 其实vue,vuex,等vue的应该不需要external吧,除非你需要在 main process 那边访问他们。

baiyuxiong commented 3 years ago

external 是让 rollup 跳过这些 deps,在 production 中不 bundle 他们。 其实vue,vuex,等vue的应该不需要external吧,除非你需要在 main process 那边访问他们。

嗯,文档可以完善一下这个部分的说明。要不然每个人都得踩一下坑,还得研究打包的源码