diff --git a/src/App.js b/src/App.js index 4efabdb..af72355 100644 --- a/src/App.js +++ b/src/App.js @@ -21,6 +21,11 @@ import { Page } from './Page'; class App extends Component { render() { + // Ensure the title is something based on the configured title + if (!document.title.startsWith(config.title)) { + document.title = config.title; + } + return (