mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
12 lines
141 B
JavaScript
12 lines
141 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
|
|
const nextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|