Skip to content
Snippets Groups Projects
Unverified Commit bff0ab4d authored by Paul Rosenzweig's avatar Paul Rosenzweig Committed by GitHub
Browse files

move publicPath from file-loader options to extract text plugin (#11350)

parent 31c36adc
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,7 @@ const config = (module.exports = {
},
{
test: /\.(eot|woff2?|ttf|svg|png)$/,
use: [{ loader: "file-loader", options: { publicPath: "./" } }],
use: [{ loader: "file-loader" }],
},
{
test: /\.css$/,
......@@ -95,6 +95,7 @@ const config = (module.exports = {
{ loader: "css-loader", options: CSS_CONFIG },
{ loader: "postcss-loader" },
],
publicPath: "./",
}),
},
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment