We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
buildOptions
1 parent 1d5d515 commit 282eb52Copy full SHA for 282eb52
packages/angular_devkit/build_angular/src/angular-cli-files/models/webpack-configs/styles.ts
@@ -45,8 +45,8 @@ export function getStylesConfig(wco: WebpackConfigOptions) {
45
// Determine hashing format.
46
const hashFormat = getOutputHashFormat(buildOptions.outputHashing as string);
47
// Convert absolute resource URLs to account for base-href and deploy-url.
48
- const baseHref = wco.buildOptions.baseHref || '';
49
- const deployUrl = wco.buildOptions.deployUrl || '';
+ const baseHref = buildOptions.baseHref || '';
+ const deployUrl = buildOptions.deployUrl || '';
50
const resourcesOutputPath = buildOptions.resourcesOutputPath || '';
51
52
const postcssPluginCreator = function (loader: webpack.loader.LoaderContext) {
0 commit comments