Skip to content

Commit

Permalink
fix href and website title
Browse files Browse the repository at this point in the history
  • Loading branch information
Viterbo committed May 6, 2024
1 parent b10171e commit 9033beb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vue-ts",
"name": "telos-cloud-js-demo",
"version": "0.0.0",
"private": true,
"homepage": "https://vapaee.github.io/telos-cloud-js/",
Expand Down
2 changes: 1 addition & 1 deletion examples/demo/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
<title>Telos Cloud Demo</title>
</head>
<body>
<noscript>
Expand Down
5 changes: 4 additions & 1 deletion examples/demo/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@ module.exports = {
devServer: {
port: 8081
},
outputDir: 'build'
outputDir: 'build',
publicPath: process.env.NODE_ENV === 'production'
? '/telos-cloud-js/'
: '/'
}

0 comments on commit 9033beb

Please sign in to comment.