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
why css-loader path exists '!'
In webpack bundle file, I don't understand the '!' means what, it seems not separator of path. Can someone tell me?
The simple example such like: "./node_modules/css-loader/dist/cjs.js!./src/inde...
JinLin
Votes: 0
Answers: 1
Webpack duplicates styles in html
My html:
<!-- head -->
<body>
<script src="index.js"></script>
</body>
My webpack.config.js:
module: {
rules: [
{
test: /\.css$/,
...
doox911
Votes: 0
Answers: 0
Webpack with MiniCSSExtractPlugin throws erros
I have a Vue.js app with Webpack, and I have configured my CSS loader like this:
module: {
rules: [
...
{
test: /\.css$/,
use: [
isDev ? "vue-style-loade...
Renaud is Not Bill Gates
Votes: 0
Answers: 0