Minimal app / "strip" ionic blank starter?

Ah ok I have it - It does not work if the nav ist there:

app.componet.ts:

import { Component } from '@angular/core';

@Component({
  // templateUrl: 'app.html'
  template: `<h1>Hello World</h1>`
})
export class MyApp {
  constructor() {}
}

works

my mistake was a template with (that does not work):

<ion-nav>
    Hello World
</ion-nav>
1 Like