-
Notifications
You must be signed in to change notification settings - Fork 31
Webpack Javascriptservices installation
Jeroen Vinke edited this page May 7, 2017
·
2 revisions
-
npm install aurelia-kendoui-bridge --save
-
in
ClientApp/app/boot.ts
add.plugin(PLATFORM.moduleName('aurelia-kendoui-bridge'));
like so:aurelia.use.standardConfiguration() .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge'));
-
in
webpack.config.js
add the following statement to theentry.vendor
section:'aurelia-kendoui-bridge'
entry: { vendor: [ 'aurelia-event-aggregator', 'aurelia-fetch-client', 'aurelia-framework', 'aurelia-history-browser', 'aurelia-logging-console', 'aurelia-pal-browser', 'aurelia-polyfills', 'aurelia-route-recognizer', 'aurelia-router', 'aurelia-templating-binding', 'aurelia-templating-resources', 'aurelia-templating-router', 'bootstrap', 'bootstrap/dist/css/bootstrap.css', 'jquery', 'aurelia-kendoui-bridge' ], },
-
That's it!