Hi all,
How can I enable scss as style lang on Ionic project?
<style lang="scss" scoped>
Official Vue documentation ([Using Pre-Processors | Vue Loader]) says that
webpack.config.js must be modified but the Ionic does not have this file.
npm install -D sass-loader node-sass
and
module.exports = {
module: {
rules: [
// this will apply to both plain `.scss` files
// AND `<style lang="scss">` blocks in `.vue` files
{
test: /\.scss$/,
use: [
'vue-style-loader',
'css-loader',
'sass-loader'
]
}
]
},
// plugin omitted
}
Thanks in advance!!