21 lines
449 B
JavaScript
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); |