/ src / evidently / nbextension / static / extension.js
extension.js
 1  // Entry point for the notebook bundle containing custom model definitions.
 2  //
 3  define(function() {
 4      "use strict";
 5  
 6      window['requirejs'].config({
 7          map: {
 8              '*': {
 9                  'evidently': 'nbextensions/evidently/index',
10              },
11          }
12      });
13      // Export the required load_ipython_extension function
14      return {
15          load_ipython_extension : function() {}
16      };
17  });