Daniel Cohen
Daniel Cohen
@nhim175 @jordajm can you please share the errors you are getting?
This is a collision with this issue: https://github.com/dcohenb/angular-img-fallback/issues/12 In short, the other one states that the main file should be the unminified version...
What about throwing in there: `alert('STOP USING IE!');`
Still happening version 2023.8.2 macOS Ventura 13.5.2 (M2 Pro) ``` $ cloudflared bad file descriptor $ cloudflared version cloudflared version 2023.8.2 (built 2023-08-31-1503 UTC) ```
add a style tag to the html and define the styling in it, it seems to work just fine
Well one way is to give an absolute location of the font i.e.: ``` html @font-face { font-family: MyFont; src: url('http://localhsot:3000/assets/fonts/MyFont.otf'); } .cls { font-family: MyFont; } My awesome font!...
file://?! i think you're doing something wrong there... although i don't really know what is it you're trying to build and in what context it will work
Are you building something that's suppose to run in the web eventually?
I Believe you, it's just that using the file protocol is not something you should do. the protocol has been declared obsolete as you can read on [Wikipedia - file...
Well again i don't know what you're trying to achieve but if you only work locally you can use the node packages [http-server](https://www.npmjs.com/package/http-server) or [serve](https://www.npmjs.com/package/serve) to run a local server...