Im building small app in angular2 and im trying to modify a file using webstorm to see if its updating in my browser.
I did the following and got no errors so far:
npm i -g angular-cli
ng new ponyracer
ng serve (working on background)
In this file, I changed "PonyRacer4566" to "dshbhs" But nothing gets update in the browser.
import {Component} from 'angular2/core';
@Component({
selector: 'ponyracer-app',
template: '<h1>PonyRacer4566</h1>'
})
export class PonyRacerApp {
}