Develop with rails and Vue.js.
Vue.js use ionicons, and the fonts assets request is send only when some method called, such as below:
vue_instance.$Message.error("some message");
In dev env, it work well. But in production, I got 404 error with the font files request.
If the fonts request is write in css file, I can precomplie them and change the reference tag to asset_path and it will work in production env.
But How about this situation?