Import JSON in JS
91
15
No
91
import config from "./config.json" assert { type: "json" };
console.log(config.port);
With JSON modules import, you can import JSON files in your JS scripts.
import config from "./config.json" assert { type: "json" };
console.log(config.port);
With JSON modules import, you can import JSON files in your JS scripts.