I'm attempting to use the Angular 6's stylePreprocessorOptions
so I can simply @import 'app'
to import branding/other shared stylings into a component.
My nativescript project exists within a NxWorkspace setup, which itself contains an angular.json
.
The documentation from @nativescript/schematics
says to generate a new angular.json
file within the NativeScript projects root, which I have done but also I have placed a clone of the definition within my NxWorkspace root's angular.json
file as it's unclear to me which is used.
The angular.json
file's content can be found here: https://hastebin.com/zajiviqoyi.json
When attempting to use @import "app"
it tells me it cannot find the app
relative to the file where I have done the import line. In my other app setups, but NativeScript in this instance appears to be ignoring my configuration.