Remove The Get Parameter From Links In Styles

Greetings. Is there a way to remove get parameter from links in css(less) files?

For example, I have a web font, when I put it into css, it looks like

@font-face {
  font-family: 'Light';
  font-display: swap;
  src: url('../media/light.otf') format('opentype');
}

But, when cs-cart compiles into standalone.css file, it append to link some numbers

@font-face {
  font-family: 'Light';
  font-display: swap;
  src: url('../media/light.otf?123123123123') format('opentype');
}

How to remove that?