We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89875a6 commit 43a71a9Copy full SHA for 43a71a9
webpack.dev.js
@@ -6,7 +6,7 @@ const path = require('path');
6
const webpack = require('webpack');
7
8
// webpack plugins
9
-const DashboardPlugin = require('webpack-dashboard/plugin');
+var DashboardPlugin = require('webpack-dashboard/plugin');
10
11
// config files
12
const common = require('./webpack.common.js');
@@ -64,7 +64,6 @@ const configurePostcssLoader = () => {
64
{
65
loader: 'css-loader',
66
options: {
67
- url: false,
68
importLoaders: 2,
69
sourceMap: true
70
}
@@ -75,7 +74,10 @@ const configurePostcssLoader = () => {
75
74
76
loader: 'postcss-loader',
77
78
- sourceMap: true
+ sourceMap: true,
+ config: {
79
+ path: path.resolve(__dirname),
80
+ }
81
82
83
]
0 commit comments