I wish to reference the js data file in the framework
I write like this
import Configs from "../data/configs";
console.log(Configs);
in chrome no output
use export same not working
const Configs = [
{
"id": 0,
"cover": "1.webp"
}
]
export default Configs
1