Answers for "svelte json"

0

svelte json

// add at the beginning of the file :
import json from '@rollup/plugin-json'

// under the plugin line :
plugins: [
  json({
    compact: true
  }),

//...
// Svelte file:
<script>
import * as myjson from './test.json'
</script>

<p>{myjson.mykey}</p>
Posted by: Guest on October-11-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language