How to access local json file via svelte?

For now I use onMount async function to access const dataAPI = './jsfwperf.json'; let data = []; onMount(async () => { const res = await fetch(dataAPI) .then(res => res.json()) ...