forked from UKSOURCE/ipv6
30 lines
557 B
TypeScript
30 lines
557 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'storage.googleapis.com',
|
|
pathname: '/**',
|
|
},
|
|
{
|
|
protocol: "http",
|
|
hostname: "localhost",
|
|
port: "3001",
|
|
pathname: "/**",
|
|
},
|
|
{
|
|
protocol: "http",
|
|
hostname: "127.0.0.1",
|
|
port: "3001",
|
|
pathname: "/**",
|
|
}
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|