Is there a way to configure Tailwind CSS and VS Code in order to prevent errors related to at-rules and empty tag errors inside a VueJS single file component (vue-cli)?
<template>
...
</template>
<style lang="scss">
body {
// } expected
@apply font-source pt-4;
} // at-rule or selector expected
h5,h4,h3,h2,h1 {
// } expected
@apply font-pt font-bold;
} // at-rule or selector expected
</style>