noogle/next.config.js

15 lines
260 B
JavaScript
Raw Normal View History

2022-11-26 12:36:08 +03:00
/** @type {import('next').NextConfig} */
2022-11-27 16:16:52 +03:00
const nextConfig = (phase, { defaultConfig }) => {
const config = {
reactStrictMode: true,
swcMinify: true,
images: {
loader: "custom",
},
};
return config;
2022-11-26 12:36:08 +03:00
};
module.exports = nextConfig;