That isn't compliant to a standard. The "main" defines an entry point of the package or a root component. The standard value must be a string value, not an array. The WebPack loader has a problem with it (crash!).
The fix is following: "main": "dist/css/material-design-iconic-font.css". It just works, because references to fonts are relative.
The main property is defined as
"main": [ "./dist/css/", "./dist/fonts/" ]
That isn't compliant to a standard. The "main" defines an entry point of the package or a root component. The standard value must be a string value, not an array. The WebPack loader has a problem with it (crash!).
The fix is following: "main": "dist/css/material-design-iconic-font.css". It just works, because references to fonts are relative.
Thank you,