-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.js
More file actions
16 lines (13 loc) · 743 Bytes
/
api.js
File metadata and controls
16 lines (13 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* JavaScript entry point for webpack to compile the API widget
* Entry points for the stylesheet and the widget's JS code
* and an export which the webpack.config.js will place into the "var openhistoricalmap" namespace
*/
// miscellaneous components and polyfills
require('./polyfills.js'); // eslint-disable-line
// the HTML file isn't processed at all, but we do "process" it so as to trigger a page reload when running under webpack-dev-server
require('./index.html'); // eslint-disable-line
// the API code itself
require('./openhistoricalmap-inspector.scss'); // eslint-disable-line
const OpenHistoricaMapInspector = require('./openhistoricalmap-inspector'); //eslint-disable-line
export default OpenHistoricaMapInspector;