mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2024-12-13 09:18:54 +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
|
|
},
|
|
}
|