2018-07-29 17:20:10 +05:30
|
|
|
|
|
|
|
module.exports = {
|
2018-08-10 17:42:18 +05:30
|
|
|
staticPath: './static',
|
|
|
|
distPath: './dist',
|
|
|
|
dev: {
|
2018-09-29 12:53:16 +05:30
|
|
|
entryHtml: 'src/index.html',
|
2018-08-10 17:42:18 +05:30
|
|
|
entry: {
|
|
|
|
app: './src/main.js'
|
2018-07-29 17:20:10 +05:30
|
|
|
},
|
2018-10-15 17:35:54 +05:30
|
|
|
entryHtml: './src/index.html',
|
|
|
|
srcDir: './src',
|
2018-08-10 17:42:18 +05:30
|
|
|
outputDir: './dist',
|
|
|
|
assetsPublicPath: '/',
|
|
|
|
devServerPort: 8000,
|
|
|
|
env: {
|
|
|
|
PORT: process.env.PORT || 8000
|
|
|
|
}
|
|
|
|
},
|
|
|
|
node: {
|
|
|
|
paths: {
|
|
|
|
main: 'server/index.js'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
electron: {
|
2018-10-20 18:02:01 +05:30
|
|
|
entry: {
|
|
|
|
app: './src/main-electron.js'
|
|
|
|
},
|
2018-08-10 17:42:18 +05:30
|
|
|
paths: {
|
|
|
|
mainDev: 'src-electron/main.dev.js',
|
|
|
|
main: 'src-electron/main.js',
|
|
|
|
renderer: 'src/electron.js'
|
2018-07-29 17:20:10 +05:30
|
|
|
}
|
2018-08-10 17:42:18 +05:30
|
|
|
}
|
2018-07-29 17:20:10 +05:30
|
|
|
}
|