Co-authored-by: ic3w0lf <bob@ic3.space> Reviewed-on: #209 Reviewed-by: Quaternions <quaternions@noreply@itzana.me> Co-authored-by: ic3w0lf22 <ic3w0lf22@noreply@itzana.me> Co-committed-by: ic3w0lf22 <ic3w0lf22@noreply@itzana.me>
17 lines
261 B
TypeScript
17 lines
261 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
distDir: "build",
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**.rbxcdn.com",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|