fix(@schematics/angular): set inlineStyleLanguage for universal if present in build options

The `inlineStyleLanguage` option should be set for an application's server target if also present in the application's build target. The setting is needed to ensure the server target properly builds the applica
tion's styles.
This commit is contained in:
Charles Lyding 2021-04-15 09:51:38 -04:00 committed by Alan Agius
parent fdf41b24dc
commit 18c8adf0dc

View File

@ -61,6 +61,7 @@ function updateConfigFile(options: UniversalOptions, tsConfigDirectory: Path): R
i18nMissingTranslation: options?.i18nMissingTranslation, i18nMissingTranslation: options?.i18nMissingTranslation,
preserveSymlinks: options?.preserveSymlinks, preserveSymlinks: options?.preserveSymlinks,
extractLicenses: options?.extractLicenses, extractLicenses: options?.extractLicenses,
inlineStyleLanguage: options?.inlineStyleLanguage,
}; };
}; };