mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-13 18:30:54 +01:00
16 lines
207 B
JavaScript
16 lines
207 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
|
|
const nextConfig = {
|
|
output: "export",
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
experimental: {
|
|
externalDir: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|