Raj
Raj

Reputation: 63

Cannot find module '@angular/elements' : Angular 7

I am new to angular right now angular 7 using.I want to create angular elements so importing import { createCustomElement } from '@angular/elements' but it giving error Cannot find module '@angular/elements'. Any help will helpful.

Upvotes: 5

Views: 8689

Answers (2)

Qin Chenfeng
Qin Chenfeng

Reputation: 471

Another alternative

ng add @angular/elements --project=*your_project_name*

Upvotes: 1

Amit Chigadani
Amit Chigadani

Reputation: 29775

You have probably not installed @angular/elements. Please install it.

Run npm install @angular/elements

Upvotes: 22

Related Questions