You’re doing ionic with vue and are receiving an invalid host header message, black letters on white background.
Create a file vue.config.js
in the project root and past this content:
1 2 3 4 5 |
module.exports = { devServer: { allowedHosts: 'all' } } |