mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-12 09:03:00 +01:00
19 lines
284 B
JavaScript
19 lines
284 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
experimental: {
|
|
externalDir: true,
|
|
},
|
|
compiler: {
|
|
removeConsole: process.env.NODE_ENV === "production",
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|