phaser 3 Scroll game window

Internally used property pointer-events: none, but I need to scroll with the mouse of the entire container with the game. Can this be done somehow using phaser? Maybe there is some property in the config that allows you to do this

If you mean scrolling the page by mouse wheel, use

{ input: { mouse: { preventDefaultWheel: false } } }

in the game config. Don’t use pointer-events.