When I storybook-build a project, it generates some static files for production. Among those are the styles with random names, let's say /css/main.50m3r4nd0mnumb3rs.css
How can I rename only the CSS file to main.css? I want to automatically do this after the build process. I know that there is a webpackFinal to configure in main.js, but I'm quite unsure how to achieve this.
I don't mind losing the import references to the CSS file, since I will use only the CSS and fonts (no JS or HTML generated will be used for what I want).