Here is situation
in Dev Environemt , I have to add css and js file like below
<script src="../../js/file.js">
<link rel="stylesheet" type="text/css" href="../../css/file.css">
in Production Environment , I have to add same css and js file like below with the change in src attribute
<script src="js/file.js">
<link rel="stylesheet" type="text/css" href="css/file.css">
Any solution to do it dynamically instead of manually
Thanks