Hi!
[SOLVED BUT NEEDS A TINY CHANGE]
When installing from scratch, since the nextjs.config.js is adding an item that requires the BLOB_STORE_ID:
{
protocol: 'https',
hostname: process.env.BLOB_STORE_ID,
},
That ENV since to be present in the env.example.
Just adding any value to that will solve the problem, otherwise, running yarn dev will return in an error:
Invalid next.config.js options detected:
"images.remotePatterns[11].hostname" is missing, expected string
See more info here: https://nextjs.org/docs/messages/invalid-next-config
error Command failed with exit code 1.
Solution (unless scaping that empty string in the config):
in .env (so from .env.example):
Hi!
[SOLVED BUT NEEDS A TINY CHANGE]
When installing from scratch, since the
nextjs.config.jsis adding an item that requires theBLOB_STORE_ID:That ENV since to be present in the
env.example.Just adding any value to that will solve the problem, otherwise, running
yarn devwill return in an error:Solution (unless scaping that empty string in the config):
in
.env(so from.env.example):