You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when setting this to true, you also need to set title in webpack.partial.conf.plugins.js
if you don't do this it tries to guess the name of app/website thru the function guessAppName and this tries to looks that up in package.json.
I don't think everybody changes the package.json to match the website/app name.
maybe we can retreive website title from index.html and set that in webpack.partial.conf.plugins.js
The text was updated successfully, but these errors were encountered:
I don't think using the html is a feasible solution. The title in the html can also be changed at runtime, which won't be picked up yet at build time. My suggestions:
Don't guess the title, but error indicating that you need to add a title
Use the package.json value but error if that still equals "Vue Skeleton". Added advantage is that devs will more often update the name in the package json :)
when setting this to true, you also need to set title in
webpack.partial.conf.plugins.js
if you don't do this it tries to guess the name of app/website thru the function
guessAppName
and this tries to looks that up in package.json.I don't think everybody changes the package.json to match the website/app name.
maybe we can retreive website title from index.html and set that in
webpack.partial.conf.plugins.js
The text was updated successfully, but these errors were encountered: