After installing material-design-icons-iconfont using npm, I noticed that the woff files are available in the dist folder once I build the project.
Material-design-icons.css
/* For IE6-8 */
src: local("Material Icons"), local("MaterialIcons-Regular"),
url("./fonts/MaterialIcons-Regular.woff2") format("woff2"),
url("./fonts/MaterialIcons-Regular.woff") format("woff"),
url("./fonts/MaterialIcons-Regular.ttf") format("truetype");
Despite having all three woff files present in the static/fonts folder within the dist directory, when trying to access them, a 404 error is displayed. Even though the file names and paths seem correct in both the dist folder and browser console, the 404 error persists.