Skip to content

Commit

Permalink
Merge pull request #1641 from mscherer/fix_deployment
Browse files Browse the repository at this point in the history
Fix the file path for production deployment
  • Loading branch information
sgoggins authored Mar 9, 2022
2 parents e05d5c4 + 5dac45e commit b8c54a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion augurface/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>logowithoutletters.png">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./global.css" type="text/css">
<link rel="stylesheet" href="./css/global.css" type="text/css">
<script src="https://kit.fontawesome.com/f4a3a59bbb.js" crossorigin="anonymous"></script>
<title>AugurFace</title>
</head>
Expand Down
4 changes: 2 additions & 2 deletions augurface/vue.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// #SPDX-License-Identifier: MIT
module.exports = {
publicPath: '/augurface/'
}
publicPath: '/'
}

0 comments on commit b8c54a2

Please sign in to comment.