Ionic server does not start

0

I'm starting an ionic project (version 1), but my server does not start any more.

I type ionic serve --lab , the following message appears:

Starting server (address: 0.0.0.0, port: 8100, dev server port: 53703, livereload port: 35729) - Ctrl+C to cancel
[OK] Development server running!
     Local: http://localhost:8100
     External: http://192.168.1.5:8100
     DevApp: AluraCar@8100 on DESKTOP-PQPJV63

But when I put localhost:8100 in the browser it says it is not started.

Does anyone have any idea what it can be?

    
asked by anonymous 21.12.2017 / 00:59

1 answer

0

It is possible that your code has errors, check the code at the time of assigning the values, as follows:

private foo: number;
private foo = 100;

and not like this:

private foo = number;
private foo: 100;
    
22.12.2017 / 14:22