mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-24 02:45:48 +03:00
15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = (phase, { defaultConfig }) => {
|
|
const config = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
images: {
|
|
loader: "custom",
|
|
},
|
|
};
|
|
return config;
|
|
};
|
|
|
|
module.exports = nextConfig;
|