Files
magic-card-valuator/next.config.js
2022-11-02 22:07:27 -06:00

11 lines
175 B
JavaScript

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