I use Vue-cli with webpack, and I have problem to call external js and css file in index.html.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>gradana</title>
<link rel="stylesheet" href="./src/assets/css/hello.css">
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>
If I run the code I have error.
Cannot GET /src/assets/css/hello.css


