I utilized 'vue-cli' and executed the 'npm run build' command to generate a build version of my project. As a result, an 'index.html' file was automatically created in the 'dist' folder. You can see the image here:
https://i.sstatic.net/yG3o7.jpg
When I attempted to open the index.html file in my browser, it failed to load. The console displayed this error message:
https://i.sstatic.net/pOp1E.jpg
The contents of my Index.html file are as follows:
<!DOCTYPE html>
<html lang=ru>
<head>
<meta charset=utf-8>
<title>cv</title>
<style type=text/css>
html, body{
width: 100%;
height: 100%;
}</style>
<link href='/static/css/app.b3ceb6191281c6a4dd333aa0b8aed7cd.css' rel=stylesheet>
</head>
<body>
<div id=app>
</div>
<script type=text/javascript src='/static/js/manifest.488e7f096afe65619705.js'></script>
<script type=text/javascript src='/static/js/vendor.fa2e9b388f427a714cca.js'></script>
<script type=text/javascript src='/static/js/app.d3d1742ab1cad95402a6.js'></script>
</body>
</html>
What steps do I need to take in order to run it in the browser without using a server?