What is the pattern for importing JSON into Svelte's main.js file?
I'm trying:
import App from './App.html';
const dataset = require('./../posts.json');
console.log(dataset);
const app = new App({
target: document.body,
data: dataset
});
export default app;
But this does not resolve as JSON cannot be imported as an es6 module.