20 lines
330 B
TypeScript
20 lines
330 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
distDir: "build",
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'api.ic3.space',
|
|
pathname: '/strafe/map-images/**',
|
|
port: '',
|
|
search: '',
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|