1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-23 19:08:25 +02:00
upscayl/next.config.js
Nayam Amarshe 326aaca7e4
Add Language Switcher (#950)
* Remove circle bar

* Add initial language switcher support
2024-09-05 21:35:45 -04:00

16 lines
207 B
JavaScript

/**
* @type {import('next').NextConfig}
**/
const nextConfig = {
output: "export",
images: {
unoptimized: true,
},
experimental: {
externalDir: true,
},
};
module.exports = nextConfig;