You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.error("improperly configured entry for '${kvStoreName}' in fastly.toml");
If the fastly.toml file happens to contain the string matching the name of the configured KV Store, anywhere in the file, then this check will cause the build to fail. In my case I used the same string for the project's name as for the KV Store, so this check fails every time if the build has not previously put a list of assets into the fastly.toml file.
I suspect this check was put in place to catch situations where the user had their own configuration for the KV Store already present in fastly.toml, but the check is too 'greedy' as it is now.
The text was updated successfully, but these errors were encountered:
compute-js-static-publish/src/cli/commands/build-static.ts
Line 157 in a0efab1
If the
fastly.toml
file happens to contain the string matching the name of the configured KV Store, anywhere in the file, then this check will cause the build to fail. In my case I used the same string for the project'sname
as for the KV Store, so this check fails every time if the build has not previously put a list of assets into thefastly.toml
file.I suspect this check was put in place to catch situations where the user had their own configuration for the KV Store already present in
fastly.toml
, but the check is too 'greedy' as it is now.The text was updated successfully, but these errors were encountered: