How to config { javascriptEnabled: true } in quasar? #9333
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
They are the not the same The
Why do you think you need to do this in Quasar? |
Beta Was this translation helpful? Give feedback.
-
https://quasar.dev/quasar-cli/quasar-conf-js#property-build build: {
lessLoaderOptions: {
javascriptEnabled: true
}
} however, u can alter any webpack config thought the chainWebpack (chain) {
chain.module.rule('less').use('less').loader('less-loader').tag(opts => {
return Object.sign(opts, { javascriptEnabled: true })
})
} |
Beta Was this translation helpful? Give feedback.
https://quasar.dev/quasar-cli/quasar-conf-js#property-build
there is a build
options
calledlessLoaderOptions
however, u can alter any webpack config thought the
chainWebpack