Spaces:
Running
Running
File size: 304 Bytes
1380717 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/* eslint-disable */
define(function() {
'use strict';
requirejs.config({
map: {
'*': {
'@deck.gl/jupyter-widget': 'nbextensions/pydeck/index'
}
}
});
// Export the required load_ipython_extension function
return {
load_ipython_extension: function() {}
};
});
|