Skip to content
Snippets Groups Projects
Select Git revision
  • develop default protected
  • issue/482-screens-medals-trophies
  • issue/456-organizacoes-parceiras
  • issue/494-notifications
  • issue/456-organização-parceira
  • issue/455-show-caracters-limit
6 results

next.config.mjs

Blame
  • 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;