You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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,
The text was updated successfully, but these errors were encountered:
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,
The text was updated successfully, but these errors were encountered: