After updating Nuxt, the pug pre-processor start giving a warning in all of the project files.
unexpected token "indent" (PUG:INVALID_TOKEN) [2,1]
This is because the pug code starts with one indentation from Template.
<template lang="pug">
h1 Title
</template>
This will not show the warning anymore:
<template lang="pug">
h1 Title
</template>
How can I config Pug so it doesn't show this warning and keep the files with the code indentation?
Thank you for any help.
