How to fix --production css font path change

How to fixed css path assets

src: url(/assets/css/fonts/myfont.woff2)

then run --production
src: url(assets/css/fonts/myfont.woff2)

/ first removed

Thank you.

Here’s an open issue on GitHub, which also suggests a few ways of mitigating the problem: https://github.com/meteor/meteor/issues/10247

@illustreets Thanks.