How do I change the default "Webpack App" tab title in Vue.js?
CodePudding user response:
You will find <title>Webpack App</title>
in index.html
in most probably public
folder. You can change it
CodePudding user response:
you have at least two options:
document.title = 'Your new name'
or in the index.html
-file:
<head>
<title>Your new name</title>
</head>