initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import createNextIntlPlugin from 'next-intl/plugin';
|
||||
import type {NextConfig} from 'next';
|
||||
|
||||
const withNextIntl = createNextIntlPlugin();
|
||||
|
||||
const nextConfig: NextConfig = {
|
||||
reactStrictMode: true,
|
||||
output: 'standalone',
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: 'backend.ultifide.com',
|
||||
pathname: '/uploads/**'
|
||||
}
|
||||
]
|
||||
}
|
||||
};
|
||||
|
||||
export default withNextIntl(nextConfig);
|
||||
Reference in New Issue
Block a user