Clay

Results 26 comments of Clay

in `config-overrides.js`, you can also do this: ``` module.exports = function override(config, env) { // .. config.devtool = 'source-map'; return config; }; ```

@shobhitg As of create-react-app 2.1.0, it now supports TypeScript, is there a reason you cannot use that? https://github.com/facebook/create-react-app/releases

It looks like the jsx file extension is supported according their source: https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/config/webpack.config.dev.js#L229-L234

You can embed the logo in base64 then it will load correctly, e.g., ``` x-logo: url: 'data:image/svg+xml;base64, ....base64 encoded here...' ```

You might find this useful - https://github.com/CaptainLiao/vite-plugin-webpackchunkname

What appears to have happened is that you're using the npm version of bucky (me too) since the issue is currently fixed in their master branch: https://github.com/HubSpot/BuckyClient/blob/master/bucky.js#L393 If you want...

This might help someone since I also had trouble using `zoomTo` on an entity that had just been added. https://cesium.com/docs/cesiumjs-ref-doc/Rectangle.html#.fromCartesianArray ``` const arrayOfPositions = /* create array of Cesium.Cartesian3 here...

Did you try with casual-browserify? https://github.com/Klowner/casual-browserify or read the discussion in #59

If I change the browser to `ChromeHeadless` in `nwb.config.js` that solves it and maybe solves it for someone else... ``` karma: { browsers: ["ChromeHeadless"] }, ```

Keeping this open since I am still running into issues and it seems like this should be configurable but not clear how to get it to work ?...