Use Bulma in a Meteor React project

Can anyone tell how to use Bulma in Meteor?
If I simply include it inside HEAD tag it doesn’t update automatically my running instance when I change a class in a HTML tag:

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Hello Bulma!</title>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.4/css/bulma.min.css">
  <script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<section class="section">
  <div class="container">
    <h1 class="title is-1">
      Hello World
    </h1>
    <p class="subtitle">
      My first website with <strong>Bulma</strong>!
    </p>
    <button class="button is-danger">Save me</button>
  </div>
</section>
</body>

Now change is-danger to is-primary and save. It happens that you have to refresh the page manually to see the change