We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6433cc8 commit 65bb982Copy full SHA for 65bb982
GETTING_STARTED.md
@@ -46,6 +46,20 @@ Add HammerJS to your application via [npm](https://www.npmjs.com/package/hammerj
46
(such as the [Google CDN](https://developers.google.com/speed/libraries/#hammerjs)), or served
47
directly from your app.
48
49
+#### If you want to include HammerJS from npm, you can install it:
50
+
51
+```bash
52
+npm install --save hammerjs
53
+npm install --save-dev @types/hammerjs
54
+```
55
56
+Import HammerJS on your app's module.
57
58
+**src/app/app.module.ts**
59
+```ts
60
+import 'hammerjs';
61
62
63
## Configuring SystemJS
64
If your project is using SystemJS for module loading, you will need to add `@angular/material`
65
to the SystemJS configuration:
0 commit comments