mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
|
module.exports = {
|
||
|
webpack (config, { dev }) {
|
||
|
config.target = 'electron-renderer'
|
||
|
return config
|
||
|
},
|
||
|
exportPathMap () {
|
||
|
// Let Next.js know where to find the entry page
|
||
|
// when it's exporting the static bundle for the use
|
||
|
// in the production version of your app
|
||
|
return {
|
||
|
'/start': { page: '/start' }
|
||
|
}
|
||
|
}
|
||
|
}
|