1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-02-01 09:56:46 +01:00

18 lines
414 B
JavaScript
Raw Normal View History

2023-11-02 01:20:27 +09:00
/** @type {import('next').NextConfig} */
module.exports = {
2024-07-18 22:44:03 +09:00
output: 'export',
distDir:
process.env.NODE_ENV === 'production'
? // we want to change `distDir` to "../app" so as nextron can build the app in production mode!
'../app'
: // default `distDir` value
'.next',
2023-11-02 01:20:27 +09:00
trailingSlash: true,
images: {
2024-07-18 22:44:03 +09:00
unoptimized: true
2023-11-02 01:20:27 +09:00
},
2024-07-18 22:44:03 +09:00
webpack: config => {
2023-11-02 01:20:27 +09:00
return config
2024-07-18 22:44:03 +09:00
}
2023-11-02 01:20:27 +09:00
}