I'm trying to add an icon to the ListView CommandSet Extension I created using Waldek's tutorial Configure extension icon.
The issue I have is:
Getting a gulp warning *appears to be a relative web URL. This means that when the is rendered, this URL will be relative to the CDN url for the rest of the package assets. If a relative filesystem path was intended, prepend the path with "./".*
and not showing an icon in the commandset.
It's trying to open https://localhost:4321/data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0...
I'm working on the newest SPFx version 1.4.0 using a React framework.
This is the extension manifest.
"items": {
"COMMAND_1": {
"title": {
"default": "<command title>"
},
"iconImageUrl": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAALGLDJGlHAAAACBjSFJNAACHCwAAjA8AAP1SAACBQgAAfXUAAOmPAAA85gAAGc0Hn9XQAAAg1GlDQ1BJQ0MgUHJvZmlsZQAAaN6VkWVUlklFTkSuQmCC..<removed chunk>",
"type": "command"
}
}
Please give some advise or pointers to fix this.