Adding another css file

I need to add a css file to framework7 standard, i know how to add a js file (add to webpack.config) but how do i add a css file ? need to be avabile to all pages like the js file

When using webpack, you need to add global/common CSS files in main app.js file like ES modules:

import './path/to/file.css';