When I try to build I get the following error:
Module not found: Can't resolve 'private-next-pages/about.js'
Then build fails.
about.js with a component exported.My application built
I just solved! The problem was with my next.config.js, I overwritten config.resolve.alias in the wrong way. The correct way is:
config.resolve.alias = {
...config.resolve.alias,
...myWebpackConfig.resolve.alias,
}
Just ;)
Most helpful comment
I just solved! The problem was with my
next.config.js, I overwrittenconfig.resolve.aliasin the wrong way. The correct way is:Just ;)