mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2024-12-23 15:37:59 +01:00
11 lines
173 B
JavaScript
11 lines
173 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
module.exports = {
|
||
|
trailingSlash: true,
|
||
|
images: {
|
||
|
unoptimized: true,
|
||
|
},
|
||
|
webpack: (config) => {
|
||
|
return config
|
||
|
},
|
||
|
}
|