I don't know why but prettier add me a semicolon before my variable in my code like this.
if (!article && app.$config.NODE_ENV !== 'development') {
[article] = await app.$contentful.getEntries({
content_type: 'content',
'fields.route': params.id,
options: { levels: 3 },
})
}
Will be transform to :
if (!article && app.$config.NODE_ENV !== 'development') {
;[article] = await app.$contentful.getEntries({
content_type: 'content',
'fields.route': params.id,
options: { levels: 3 },
})
}
The error look like that :
