website/next.config.js

10 lines
154 B
JavaScript
Raw Normal View History

2022-11-14 20:26:33 +01:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
2022-11-16 21:32:48 +01:00
images: {
unoptimized: true,
}
2022-11-14 20:26:33 +01:00
}
module.exports = nextConfig