Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How fix "Invalid host header" error in vue 3 project?

I'm tring to deploy a simple test app on cloud with digital ocean. I created a new app with the vue cli (VUE3). After i dockerized the app and exposed to 8080. I configured the nginx so that it route traffic from port :80 to :8080 on the container. Everything is ok, but when i try to visit the page i got this error "Invalid host header". I searched on google and everybody suggest to create a vue.config.js file with this code:

module.exports = {
  devServer: {
     disableHostCheck: true
  } }

I tried this solution but nothing is changed. How can i fix this error? I also read that this kind of solution create vulnerabilities, is there a way to fix without this solution? Thank you in advance for the response

like image 324
kri-dev Avatar asked Nov 01 '25 22:11

kri-dev


1 Answers

In your vue.config.js file you can try this settings

const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
    transpileDependencies: true,
    devServer: {
        allowedHosts: "all"
    }
})
like image 144
razorxan Avatar answered Nov 03 '25 15:11

razorxan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!