Как скачать локально PIXIJS и подключить?
Ошибка
pixi.js:27681 Uncaught TypeError: Cannot read properties of undefined (reading 'canvas') at get view (pixi.js:27681:30) at index.html:11:39
Запускаю с Яндекс браузера через ссылку file:///...
Код:
<!DOCTYPE html>
<html>
<head>
<title>PixiJS Пример</title>
</head>
<body>
<script src="node_modules/pixi.js/dist/pixi.js"></script>
<script>
const app = new PIXI.Application({
width: 800,
height: 600,
backgroundColor: 0x1099bb
});
document.body.appendChild(app.view);
</script>
</body>
</html>