Files
campaign-site/next.config.js
2024-12-02 22:13:04 -03:00

24 lines
442 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'magic-strapi.nbg1.your-objectstorage.com',
},
],
},
webpack: (config, options) => {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
})
return config
},
}
module.exports = nextConfig