python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Webpack 5 source map points to a wrong file
I have this issue encountered on Webpack 5 in generating source maps. To briefly explain it, the source map is pointing in an incorrect file when being checked on the browser. I also noticed upon seve...
John
Votes: 0
Answers: 0
Import css file into scss file with sass-loader Webpack
I created my own npm lib where I have an scss file like this:
// From my own lib
index.scss
//
// Libraries
//
@import '~rc-texty/assets/index.css'; // This is from a node_modules package
On another ...
Laetitia28
Votes: 0
Answers: 0
Change App Theme during runtime using Vue
I have a Vue Js app (V2) which has a structure like so (shortened to focus on issue):
_variables.scss
$brand-theme:#F5F5F5
and loaded via sass loader as so in the vue.config.js
@import "@/assets...
mbge9pjb
Votes: 0
Answers: 1
WARNING: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0
After I've updated my Angular application, and by doing so also updated Sass compiler I started getting this error
$val: 100px;
.some-sellector {
padding: $val / 2;
}
WARNING: Using / for division...
Gil Epshtain
Votes: 0
Answers: 1