Sage 9 + webpack

ha - thanks i needed …/fonts/ but i had ./fonts/.

Couldn’t see the details for the sheer amount of errors!

@intelligence Have you been able to resolve this? I also get this error when trying to console.log() anything

I figured it out. I needed to add the following setting to .eslintrc: "no-console": 0,

Any idea why console logging is disabled by default?

Full rule code:

"rules": {
    "no-console": 0,
    "comma-dangle": [
      "error",
      {
        "arrays": "always-multiline",
        "objects": "always-multiline",
        "imports": "always-multiline",
        "exports": "always-multiline",
        "functions": "ignore"
      }
    ]
  }

@patrickv Can I use watch mode on my site url “devUrl” ?

Related: