There was an error while loading. Please reload this page.
Kill the server and restart it, adding --host 0.0.0.0 --disableHostCheck true to the command.
Same as above, but add --host 0.0.0.0 --disable-host-check instead
Kill the server and restart it, adding --host 0.0.0.0 to the command. --disable-host-check is sometimes needed here as well.
you need to change vue.config.js
vue.config.js
v3:
module.exports = { devServer: { disableHostCheck: true, }, };
v4:
module.exports = { devServer: { allowedHosts: "all", }, };