Nuxt Jisonlexererror: Kesalahan leksikal pada baris 1: Teks yang tidak dikenal.

Make sure that you've added lang="scss" in the <style> tag
Ex: 
<style scoped>
@import '~/assets/file.scss';
</style>

// should be: 

<style lang="scss" scoped>
@import '~/assets/file.scss';
</style>
florinrelea