0

I get the errors [enter image description here when I try to reload specific components.

monitordaten is my component name.

I did some changes in webmanifest before but nothing that could be really related to that. Thats how my manifest looks like now.

  "scope": "./",
  "start_url": "./",

How can I fix those errors?

IAfanasov
  • 2,726
  • 3
  • 18
  • 34
SNnaKR
  • 7
  • 5
  • Make sure that the server's MIME type for .css files is set correctly. – Andrew Morton May 18 '21 at 18:52
  • Does this answer your question? [Stylesheet not loaded because of MIME-type](https://stackoverflow.com/questions/48248832/stylesheet-not-loaded-because-of-mime-type), in particular [this answer](https://stackoverflow.com/a/51078841/1115360). – Andrew Morton May 18 '21 at 18:53
  • Oh, hang on, if it's replying with text/html then that could well be a 404 File not found error page. – Andrew Morton May 18 '21 at 18:56

1 Answers1

0

Looking into the CSS file path, I guess it points to a nonexisting file.

I suppose placing this style file into the assets folder and reference that folder would solve the issue.

IAfanasov
  • 2,726
  • 3
  • 18
  • 34
  • indeed, I just got scss files, no css. So that could not be the error. But where could this file be set? – SNnaKR May 19 '21 at 09:50