init
This commit is contained in:
25
next.config.js
Normal file
25
next.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
const withNextIntl = require('next-intl/plugin')('./i18n.ts');
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
images: {
|
||||
remotePatterns: [
|
||||
{
|
||||
protocol: 'https',
|
||||
hostname: '**',
|
||||
},
|
||||
{
|
||||
protocol: 'http',
|
||||
hostname: '**',
|
||||
},
|
||||
],
|
||||
},
|
||||
output: 'standalone',
|
||||
|
||||
reactStrictMode: false,
|
||||
typescript: {
|
||||
ignoreBuildErrors: false,
|
||||
},
|
||||
};
|
||||
|
||||
module.exports = withNextIntl(nextConfig);
|
||||
Reference in New Issue
Block a user