Make CSS output URL respect baseUrl setting
A typo was preventing this from happening: it was always trying to load CSS from the root domain instead of one relative to the base path.
This commit is contained in:
parent
be12c945fa
commit
badcebeb35
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ let options = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
extractCSS: true,
|
extractCSS: true,
|
||||||
cssOutputPath: '/css/styles.css',
|
cssOutputPath: 'css/styles.css',
|
||||||
publicPath: 'public' + (config.basePath || ''),
|
publicPath: 'public' + (config.basePath || ''),
|
||||||
compilerConfig: {
|
compilerConfig: {
|
||||||
// custom webpack config
|
// custom webpack config
|
||||||
|
|
Loading…
Reference in a new issue