I have all scss in ~/assets/main.scss.
css in nuxt.config.js:css: [{ lang: 'scss', src: '~assets/styles/main.scss' }]
css IS NOT autoprefixed
<style lang="scss">
@import "./../assets/styles/main.scss"
</style>css IS autoprefixed
<script>
import '~assets/styles/main.scss'
</script>css IS NOT autoprefixed AND when page loads initially html does not contain any css (it shows html without css, what a mess) and css rules are "loaded" after ~0.5 sec (for 0.5 sec users sees html without css).
My question is why when I add global css (scss) (point 1) it is not autoprefixed?
<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This feature request is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c864">#c864</a>)</em></sub></div>