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
The SCSS/LESS compilers (and in theory, any CSS compiler) do not work in electron-prebuilt-compile@3.0.0-beta.1 due to a new Chrome feature added somewhere between 59 an 66.
When you try to use SCSS/LESS, chrome spits the following warning into the console:
[Deprecation] CSS cannot be loaded from `file:` URLs unless they end in a `.css` file extension.
The resulting index.scss (or whatever file name) is then loaded as a blank text/plain and is completely ignored. I don't think this is necessarily a problem with Chrome/Electron, but rather in how electron-compile works, which is why I brought this here.
The SCSS/LESS compilers (and in theory, any CSS compiler) do not work in
electron-prebuilt-compile@3.0.0-beta.1due to a new Chrome feature added somewhere between 59 an 66.When you try to use SCSS/LESS, chrome spits the following warning into the console:
The resulting
index.scss(or whatever file name) is then loaded as a blanktext/plainand is completely ignored. I don't think this is necessarily a problem with Chrome/Electron, but rather in howelectron-compileworks, which is why I brought this here.