-
Notifications
You must be signed in to change notification settings - Fork 30
Webpack Javascriptservices installation
Jeroen Vinke edited this page May 7, 2017
·
2 revisions
-
npm install aurelia-kendoui-bridge --save -
in
ClientApp/app/boot.tsadd.plugin(PLATFORM.moduleName('aurelia-kendoui-bridge'));like so:aurelia.use.standardConfiguration() .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge')); -
in
webpack.config.jsadd the following statement to theentry.vendorsection:'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!