You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. /*eslint-env node*/
  2. 'use strict';
  3. var path = require('path');
  4. // If in 'production' mode, use the combined/minified/optimized version of Cesium
  5. if (process.env.NODE_ENV === 'production') {
  6. module.exports = require(path.join(__dirname, 'Build/Cesium/Cesium'));
  7. return;
  8. }
  9. module.exports = require('esm')(module)('./Source/Cesium.js');