We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In order to support Single Page Applications Browsersync can be used with connect-history-api-fallback module as middleware.
connect-history-api-fallback
See example below:
historyApiFallback = require('connect-history-api-fallback') server: { baseDir: "...", middleware: [ historyApiFallback() ] }
With this configuration every URL will point to the home page of the application.
Based on https://github.com/BrowserSync/browser-sync/issues/204