This repository has been archived on 2023-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
imageify/next.config.js

18 lines
269 B
JavaScript
Raw Normal View History

2022-11-13 19:21:34 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2022-11-14 00:08:16 +00:00
reactStrictMode: true,
2022-11-13 19:21:34 +00:00
2022-11-14 00:08:16 +00:00
images: {
remotePatterns: [
{
protocol: "http",
hostname: "localhost",
port: "3000",
pathname: "/api/files/**",
},
],
},
};
module.exports = nextConfig;