Files
Firefly_Srtools/next.config.ts
AzenKain 9b38146443
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m40s
Remove optimaze image
2025-08-21 10:11:23 +07:00

41 lines
887 B
TypeScript

import createNextIntlPlugin from "next-intl/plugin";
import type { NextConfig } from "next";
const withNextIntl = createNextIntlPlugin()
const nextConfig: NextConfig = {
reactStrictMode: false,
output: 'standalone',
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'localhost',
pathname: '**',
},
{
protocol: 'http',
hostname: 'localhost',
pathname: '**',
},
{
protocol: 'https',
hostname: 'api.hakush.in',
pathname: '**',
},
{
protocol: 'https',
hostname: 'homdgcat.wiki',
pathname: '**',
},
],
},
eslint: {
ignoreDuringBuilds: true,
},
};
export default withNextIntl(nextConfig);