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 8debab3 commit 34c8515Copy full SHA for 34c8515
webpack.config.js
@@ -15,7 +15,11 @@ module.exports = {
15
test: /\.css$/,
16
use: ExtractTextPlugin.extract({
17
fallback: "style-loader",
18
- use: "css-loader"
+ use: "css-loader",
19
+ // Set publicPath as relative path ("./").
20
+ // By default it uses the `output.publicPath` ("/static/dist/"), when it rewrites the URLs in styles.css.
21
+ // And it causes these files unavailabe if BinderHub has a different base_url than "/".
22
+ publicPath: "./"
23
})
24
},
25
{
0 commit comments