craco icon indicating copy to clipboard operation
craco copied to clipboard

`devServer.client.overloay=false` is not work

Open nghieptiki opened this issue 1 year ago • 1 comments

What's happening I'm trying to turn off the overlay error. It's just not working.

CRACO version (ex. ^7.0.0)

CRACO config

const config: CracoConfig = {
  devServer: {
    client: {
      overlay: false
    },
  }
}

Additional information If I turn off devServer.client=false then it works.

const config: CracoConfig = {
  devServer: {
    client: false
  }
}

nghieptiki avatar Mar 15 '23 11:03 nghieptiki

devServer: { client: false } this will cause the HMR to fail

candy4290 avatar Oct 24 '23 03:10 candy4290