Andrew Kemp
Andrew Kemp
https://www.npmjs.com/package/ng-pwa-tools
@aheinze , that 500's my server. Any other suggestions?
Alright cool, So that works. Do you use custom error screens/have you gotten them to work with "views/404.php with /views/display.php" snippet: ``` php $app = new Lime\App(['route' => $_SERVER["REQUEST_URI"],]); ......
Funky! I got it working using absolute paths. ``` php $app = new Lime\App($settings); .... $app->on("after", function() { switch($this->response->status){ case "404": $this->response->body = $this->render("/home/ubuntu/workspace/views/404.php with views/bootstrap.php"); break; case "500": $this->response->body...
Some things to consider: https://github.com/angular/angular-cli/issues/3430 && https://github.com/angular/angular-cli/issues/6872
Also, adding dynamic `` tag Some examples on how: [Ex1](https://toddmotto.com/dynamic-page-titles-angular-2-router-events) [Ex2](https://stackoverflow.com/questions/38644314/changing-the-page-title-using-the-angular-2-new-router/38652281#38652281)