I want to use sqlite3 with this boilerplate:
https://github.com/bradstewart/electron-boilerplate-vue
I've tried a lot of ways getting require('sqlite3'), to work, but it keeps failing with the error:
Uncaught Error: Cannot find module 'sqlite3'
- global.require() did not work
- adding it to the webpack.ExternalsPlugin in
builds/webpack.base.conf.js
did not help
How can I solve this?