react-konva:禁用 canvas 元素 devicePixelRatio 比例

react-konva: disable canvas element devicePixelRatio scale

我正在使用 react-konva

当我用 width:750 渲染 <Stage /> 时,它会渲染宽度为 750 * devicePixelRatio

<canvas /> 元素
<Stage width={750} />

将呈现(在 iPhone 7 中)

<canvas width="1500" />

如何禁用此行为?

import Konva from 'konva';

Konva.pixelRatio = 1;

但在HDPI显示器(如视网膜)上的图像会显得模糊。