1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-12 09:03:00 +01:00
upscayl/next.config.js
2024-12-15 14:25:18 +05:30

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;