1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-24 03:18:28 +02:00
upscayl/next.config.js

15 lines
187 B
JavaScript
Raw Normal View History

2022-11-11 21:39:28 +01:00
/**
* @type {import('next').NextConfig}
**/
const nextConfig = {
2022-09-30 19:02:57 +02:00
images: {
unoptimized: true,
2022-09-30 18:36:16 +02:00
},
2023-10-25 13:44:22 +02:00
experimental: {
externalDir: true,
},
2022-09-30 18:36:16 +02:00
};
2022-11-11 21:39:28 +01:00
module.exports = nextConfig;