React App Using VITE not load template in server

i use React App with Tabler.io template it works fine in local, i already use npm run build and npm run preview in local it works fine. but when i deploy my app to server and run npm run build on server,my template not load and it show message like these.

<script src="/template/dist/libs/apexcharts/dist/apexcharts.min.js"> in "/index.html" can't be bundled without type="module" attribute
<script src="/template/dist/libs/jsvectormap/dist/js/jsvectormap.min.js"> in "/index.html" can't be bundled without type="module" attribute
<script src="/template/dist/libs/jsvectormap/dist/maps/world.js"> in "/index.html" can't be bundled without type="module" attribute
<script src="/template/dist/libs/jsvectormap/dist/maps/world-merc.js"> in "/index.html" can't be bundled without type="module" attribute
<script src="/template/dist/js/tabler.min.js"> in "/index.html" can't be bundled without type="module" attribute
<script src="/template/dist/js/demo.min.js"> in "/index.html" can't be bundled without type="module" attribute

/template/dist/css/tabler.min.css doesn't exist at build time, it will remain unchanged to be resolved at runtime

/template/dist/css/tabler-flags.min.css doesn't exist at build time, it will remain unchanged to be resolved at runtime

/template/dist/css/tabler-payments.min.css doesn't exist at build time, it will remain unchanged to be resolved at runtime

/template/dist/css/tabler-vendors.min.css doesn't exist at build time, it will remain unchanged to be resolved at runtime

/template/dist/css/demo.min.css doesn't exist at build time, it will remain unchanged to be resolved at runtime

enter image description here

i load my template in index.html like these

<link
      href="/template/dist/css/tabler.min.css?1692870487"
      rel="stylesheet"
    />
    <link
      href="/template/dist/css/tabler-flags.min.css?1692870487"
      rel="stylesheet"
    />
    <link
      href="/template/dist/css/tabler-payments.min.css?1692870487"
      rel="stylesheet"
    />

can anybody show me the right ways to solve my problem? thanks