I'm working on getting a static site I've made to run using Firebase.
But I have problems with the tutorials i've found..
Like this one: Tutorial page
Everything goes fine until i get to "III. Check Result" section..
I only get a blak white page with this source:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Virkplan</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
<script type="text/javascript" src="inline.bundle.js"></script><script type="text/javascript" src="polyfills.bundle.js"></script><script type="text/javascript" src="styles.bundle.js"></script><script type="text/javascript" src="vendor.bundle.js"></script><script type="text/javascript" src="main.bundle.js"></script></body>
</html>
I have just copy&pasted from the site and changed my firebase details..
Why do this not work?
Thank you..