mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-07 12:46:30 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 4m58s
40 lines
616 B
TypeScript
40 lines
616 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",
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/:path*{/}?',
|
|
headers: [
|
|
{
|
|
key: 'X-Accel-Buffering',
|
|
value: 'no',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|