20 lines
312 B
TypeScript
20 lines
312 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
distDir: "build",
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "tr.rbxcdn.com",
|
|
pathname: "/**",
|
|
port: "",
|
|
search: "",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|