Select Git revision
next.config.mjs
next.config.mjs 462 B
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
webpack: (config) => {
config.resolve.alias.canvas = false;
return config;
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'api.portalmec.c3sl.ufpr.br',
port: '',
pathname: '/**',
},
],
},
};
export default nextConfig;