sparkast/next.config.mjs
2024-04-04 22:51:59 +08:00

21 lines
449 B
JavaScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "a2x.pub",
port: "",
pathname: "/*"
}
]
},
output: 'standalone'
};
export default withNextIntl(nextConfig);