Files
Firefly_Sranalysis/next.config.ts
AzenKain f6abcc9024
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m13s
FIX: fix bug undefind monster image
2025-08-21 10:13:04 +07:00

37 lines
765 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: '**',
},
],
},
eslint: {
ignoreDuringBuilds: true,
},
};
export default withNextIntl(nextConfig);