We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
The text was updated successfully, but these errors were encountered:
How are you fixing this issue?
Sorry, something went wrong.
No branches or pull requests
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?
The text was updated successfully, but these errors were encountered: