mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-06-21 06:10:56 -04:00
13 lines
221 B
JavaScript
13 lines
221 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
target: 'electron-main',
|
|
entry: './main.js',
|
|
output: {
|
|
path: path.resolve(__dirname, './build'),
|
|
filename: 'main.js'
|
|
},
|
|
node: {
|
|
__dirname: false
|
|
}
|
|
} |