You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to set devtool = false in webpack config,but passing webpackExtraArgs := Seq("--devtool", "false") in sbt doesn't work and gives warning
there's a key that's not used by any other settings/tasks:
[warn]
[warn] * webpackExtraArgs
but using js config file it works :
var webpack = require('webpack');
module.exports = require('./scalajs.webpack.config');
// And then modify `module.exports` to extend the configuration
module.exports.devtool = false
with "ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1"
The text was updated successfully, but these errors were encountered:
I tried to set
devtool = false
in webpack config,but passingwebpackExtraArgs := Seq("--devtool", "false")
in sbt doesn't work and gives warningbut using js config file it works :
with "ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1"
The text was updated successfully, but these errors were encountered: