THE DEV BENCH
📑 TOMLeasy

2. Quote your strings

This TOML is broken — the value is an unquoted bare word, which TOML rejects. Fix it so `env` is the string "prod".

How to approach this

Unlike YAML (where `env: prod` is fine), TOML has NO bare-word strings. A value that isn't a number, boolean, date, array, or table MUST be quoted — either "basic" or 'literal'. `env = prod` is a syntax error; `env = "prod"` is correct.

config.toml