my index.html looks like this:
<!doctype html>
<html lang="hu">
<head>
<meta charset="utf-8">
<title>WebsiteName</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- etc -->
The code runs fine when i use "ng build", however when i compile it in production mode (with "ng build --prod") it seems to run fine, but when reloading it disables style.css.
UPDATE: @Elizaveta's answer was correct however the new problem is that
<link rel="stylesheet" href="styles.d42b9ef58619804546db.css">
is generated by "ng build --prod" like this:
<link rel="stylesheet" href="styles.d42b9ef58619804546db.css"><!doctype html>
<html lang="hu">
<head>
<meta charset="utf-8">
<title>Nebulónia</title>
<base href="/">
<!-- etc -->
How do I tell Angular where to generate it?
Here is the full github repo: https://github.com/lori2001/NebuloniaWebsite

/? In other words, is your page visible atmydomain.comormydomain.com/somepath?