mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-07-14 16:41:17 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m25s
30 lines
571 B
TypeScript
30 lines
571 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
images: {
|
|
remotePatterns: [
|
|
new URL('http://people-api.sarlink.net/images/**'),
|
|
new URL('http://verifypersonapi.baraveli.dev/images/**'),
|
|
new URL('https://i.pravatar.cc/300/**'),
|
|
new URL('https://sarlink-portal.vercel.app/**'),
|
|
],
|
|
},
|
|
output: "standalone",
|
|
async headers() {
|
|
return [
|
|
{
|
|
source: '/:path*{/}?',
|
|
headers: [
|
|
{
|
|
key: 'X-Accel-Buffering',
|
|
value: 'no',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|