We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1159f17 commit 4e9b922Copy full SHA for 4e9b922
1 file changed
README.md
@@ -191,17 +191,20 @@ module.exports = {
191
//...
192
plugins: [
193
new ProvidePlugin({
194
- $: "jquery",
195
- jQuery: "jquery",
196
"window.jQuery": "jquery",
197
- Hammer: "hammerjs/hammer",
198
- Materialize: "materialize-css"
+ Hammer: "hammerjs/hammer"
199
})
200
]
201
202
};
203
```
204
+Import MaterializeCSS programatically, in the same place where you import angular2-materialize module (usually in your main module, or shared module):
+```js
+import 'materialize-css';
205
+import { MaterializeModule } from 'angular2-materialize';
206
+```
207
+
208
#### Loading additional resources
209
210
Another thing you would need to confirm is being able to load web fonts properly:
0 commit comments