Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

electron打包后启动应用 提示Error: Cannot find module 'knex'

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'问题


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...