1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-31 20:15:25 +01:00
upscayl/next.config.js

15 lines
187 B
JavaScript
Raw Normal View History

2022-11-12 02:09:28 +05:30
/**
* @type {import('next').NextConfig}
**/
const nextConfig = {
2022-09-30 22:32:57 +05:30
images: {
unoptimized: true,
2022-09-30 22:06:16 +05:30
},
2023-10-25 17:14:22 +05:30
experimental: {
externalDir: true,
},
2022-09-30 22:06:16 +05:30
};
2022-11-12 02:09:28 +05:30
module.exports = nextConfig;