Enable inline javascript in LESS
I had same problem, I use webpack with less loader, I needed to add javascript option in less loader config: { test: /\.less$/, use: [{ loader: “style-loader” }, { loader: “css-loader” }, { loader: “less-loader”, options: { javascriptEnabled: true } }] } I found in the sourcecode of less compiler: https://github.com/less/less.js/blob/3.x/bin/lessc that they parse js … Read more