I am using meteor with ui engine vue and ui framework materializecss. After build when i check the icons are not showing in app but in browser. I have linked icons using cdn link.
Maybe you need to give access to URL.
Example of config in mobile-config.js:
App.accessRule("https://*.cloudfront.net/*");
1 Like
Make sure to install materialize using the meteor command.
Or
You might need to allow internet access Rule.
1 Like
@raragao @morningstardev13 I tried @raragao solution and it works. I forgot to put the * in defining url in accessrules. Thanks a lot for your support
2 Likes