Open johan-Rm opened 2 years ago
when i import json file with typescript i get values wrapped in functions
here is my code:
const getMapping = async () => import('~/config/mapping.json').then((r: any) => r.default || r) const mapping = await getMapping() console.log(mapping)
console.log result
{ type: [Function: fn] { source: 'wordpress' }, fields: { headline: [Function: fn] { source: 'title' }, dateModified: [Function: fn] { source: 'modified' } } }
original json file :
{ "type": "wordpress", "fields":{ "headline": "title", "dateModified": "modified" } }
output file when I comment module '@intlify/nuxt3'
{ type: 'wordpress', fields: { headline: 'title', dateModified: 'modified' } }
installing the module changes the way all JSON files from a nuxt project are imported, is this a bug?
How are you fixing this issue?
when i import json file with typescript i get values wrapped in functions
here is my code:
console.log result
original json file :
output file when I comment module '@intlify/nuxt3'
installing the module changes the way all JSON files from a nuxt project are imported, is this a bug?