This plugin creates a copy of the index.html file and calls it 200.html.
Surge redirects all requests to this file if no other file in the dist directory match the request.
yarn add --dev surge-spa-webpack-plugin
npm install --save-dev surge-spa-webpack-plugin
const SurgeSPAWebpackPlugin = require('surge-spa-webpack-plugin')
module.exports = {
...
plugins: [
new SurgeSPAWebpackPlugin()
]
}
yarn test