using Less css?
-
It there a way to use Less CSS (instead of SASS or plain for example) within single file components and have it compile properly? OR some other way to include Less CSS in projects?
-
I guess it would work the same way it does for SCSS as outlined here? https://v1.quasar-framework.org/quasar-cli/cli-documentation/handling-webpack#SASS%2FSCSS (except that I would install a Less loader instead and specify
<style lang="less">
instead of<style lang="scss">
?)