mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-20 20:02:00 +00:00
Some checks failed
Build and Push Docker Images / Build and Push Docker Images (push) Failing after 3m9s
27 lines
452 B
TypeScript
27 lines
452 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "http",
|
|
hostname: "verifypersonapi.baraveli.dev",
|
|
pathname: "/images/**",
|
|
search: "",
|
|
port: "",
|
|
},
|
|
{
|
|
protocol: "https",
|
|
hostname: "i.pravatar.cc",
|
|
pathname: "/300/**",
|
|
search: "",
|
|
port: "",
|
|
},
|
|
],
|
|
},
|
|
output: "standalone",
|
|
};
|
|
|
|
export default nextConfig;
|