mirror of
https://github.com/RonMeier/LoRa-Monitor.git
synced 2026-03-28 17:43:01 +01:00
14 lines
191 B
JavaScript
14 lines
191 B
JavaScript
(function () {
|
|
var ecDistPath;
|
|
if (!ecDistPath) {
|
|
ecDistPath = 'lib/echarts.min';
|
|
}
|
|
if (typeof require !== 'undefined'){
|
|
require.config({
|
|
paths: {
|
|
'echarts': ecDistPath,
|
|
}
|
|
});
|
|
}
|
|
})();
|