diff --git a/tns-core-modules/ui/styling/style-scope.ts b/tns-core-modules/ui/styling/style-scope.ts index 3c0823f41..74a5262f1 100644 --- a/tns-core-modules/ui/styling/style-scope.ts +++ b/tns-core-modules/ui/styling/style-scope.ts @@ -168,7 +168,8 @@ class CSSSource { if (!this._source && this._file) { this.load(); } - if (this._source) { + // [object Object] check guards against empty app.css file + if (this._source && this.source !== "[object Object]") { this.parseCSSAst(); } }