Kendo-UI-Library-Installation-version-2.0
  • Introduction
  • Kendo UI Library
  • Library Installation
    • General comments
    • Simple (via script tags)
    • Custom Library
    • Advanced (via module loader)
      • JSPM
      • Webpack
      • Aurelia CLI
  • Kendo UI Bridge Plugin
  • Bridge Installation
    • Webpack
      • JavascriptServices
      • Skeleton
    • Aurelia CLI
    • JSPM
  • Next Steps
Powered by GitBook
On this page
  1. Bridge Installation
  2. Webpack

Skeleton

Bridge Installation | Webpack

Skeleton

  1. npm install aurelia-kendoui-bridge --save

  2. in src/main.js load the plugin using .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge')):

    aurelia.use
     .standardConfiguration()
     .plugin(PLATFORM.moduleName('aurelia-kendoui-bridge'))
     .developmentLogging();
  3. in webpack.config.js add an entry for the aurelia-kendoui-bridge:

    entry: {
     app: ['aurelia-bootstrapper'],
     vendor: ['bluebird', 'jquery', 'bootstrap', 'aurelia-kendoui-bridge'],
    },
  4. That's it!

PreviousJavascriptServicesNextAurelia CLI

Last updated 7 years ago