Describe the bug
After Building App I Tried To Serve index.html But It Fail Due To Windows Path Problem.
index.html
<link rel="stylesheet" href="/assets/style.css">
<div id="app"></div>
<script type="module" src="/assets/index.js"></script>
I Tried To Fix It. Both Of This Are Solution Of This Bug.
<link rel="stylesheet" href="assets/style.css">
<div id="app"></div>
<script type="module" src="assets/index.js"></script>
----------------------------------------------------------------------------------------
<link rel="stylesheet" href="./assets/style.css">
<div id="app"></div>
<script type="module" src="./assets/index.js"></script>
I Added A PR(#63) To Fix This But It Was Rejected
System Info
vite version: 0.11.3
- Operating System: Windows 10
- Node version: 14.2
Describe the bug
After Building App I Tried To Serve
index.htmlBut It Fail Due To Windows Path Problem.index.html
I Tried To Fix It. Both Of This Are Solution Of This Bug.
I Added A PR(#63) To Fix This But It Was Rejected
System Info
viteversion: 0.11.3