Hello. I have a css file called aiz-core.css. My html code looks like this -
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Active Restaurant</title>
<!-- Linking custom stylesheet -->
<link rel="stylesheet" href="css/aiz-core.css">
</head>
I am also using Swiper.js in my HTML. The issue is, Vite is putting the css related to SwiperJS right below my aiz-core.css. I need my css file to be under the css of swiperjs to apply the customized styles. How to do so?