I have a project created with angular-cli
where I have installed aframe
via npm install aframe --save
, and when I try to import it in the component via import 'aframe';
it causes the following error:
Failed to execute
registerElement
onDocument
: Registration failed for typea-node
. A type with that name is already registered.
In this case, the only way to make it work is by importing the library in the <head>
tag of the index.html
file. Instead I would like to access aframe
object3D to modify objects entities, as shown here:
AFRAME.registerComponent('foo', {
init: function () {
// Do something
}
});
but unluckily I am not able to make it work. Do you have an idea on how to solve this issue? Thanks in advance for your replies!