Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

electron11.0.3+vue2 开发应用,打包发布完成后,启动应用提示

chunk-vendors.11de54ae.js:43 Error: Cannot find module 'knex'

1、确定运行依赖中包含 knex 模块,在开发时一切正常无报错
2、package.json中"knex": "^0.21.12",引入正常

引入方式

// 数据库操作
const sql = require('@/utils/db.js');
const knex = __non_webpack_require__('knex')(sql.sqlite);

//const knex = windown.require('knex')(sql.sqlite);

上述两种方式都有测试,错误相同

各位大神,还有什么原因会引起Cannot find module 'knex'问题


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.7k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...