It look like all tutorials show how config it in the old angular.cli.json
format.
"defaults": {
"styleExt": "css",
"component": {
"inlineStyle":true,
"inlineTemplate":true
}
}
but not in the angular.json
format.
and that arises the error Workspace needs to be loaded before it is used
So how I can change the configuration of an existing project to generate component with an inline template and CSS/SCSS
Thanks.