### What problem does this feature solve? The documentation for [HTML5 History Mode - Example Server Configurations](https://router.vuejs.org/guide/essentials/history-mode.html#example-server-configurations) assumes all apps are running at the document root (ie `/`). Apps using a non-root [`publicPath`](https://cli.vuejs.org/config/#publicpath) are going to struggle with these config examples. ### What does the proposed API look like? Update the examples to include `<publicPath>` placeholders, eg nginx ``` location <publicPath> { try_files $uri $uri/ <publicPath>/index.html; } ``` <!-- generated by vue-issues. DO NOT REMOVE -->