Files
Sebastian Dine 28579efc80 initial commit
2022-12-02 14:37:07 +00:00

12 lines
180 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
images: {
unoptimized: true,
},
};
module.exports = nextConfig;