Andrey Kutejko
Andrey Kutejko
@peksipatongeis may you try to reproduce the issue with favicons 7.0.0-beta.4?
I was not able to reproduce this on Linux, but somehow this happens from time to time on Windows virtual machine. I am afraid, this is some sort of low-level...
@johndeighan See #368
Addressed in #422
`output` option is kinda a low-level one. You probably need to disable generation icons for `android` instead.
`path` configuration is an absolute path to an icons directory. In that regard `assets/icons` and `/assets/icons` are equivalent.
Things are a bit backwards here. A Manifest file is secondary to icons. Historically the library was designed around icons and whatever else (e.g. manifests) were "extra files to generate".
Other option would be to expand `FaviconResponse` and add one more field. ```js export interface FaviconResponse { readonly images: FaviconImage[]; readonly files: FaviconFile[]; readonly html: FaviconHtmlElement[]; // string[] readonly htmlTags:...
That's great idea. The only concern I have is how to do this and not break existing API.
@hadimostafapour I like the direction where it goes, but I am not sure that such extension of config type is a right thing to do. Let's say, someone wants to...