Milo Toor

Results 11 comments of Milo Toor

I believe @samuliasmala is correct that the relative positioning between packages is the fundamental issue. ### Solution 1 I was able to solve the issue by manually relocating the `postcss-loader`...

@alioshr Have you tried my ["Solution 1" above](https://github.com/facebook/create-react-app/issues/12177#issuecomment-1112748045)? That involves minimal changes to the lockfile.

Really? This seems like a very common use case. Any project that produces multiple bundles (which my project does, and I'm confident many others as well) will not be able...

@kirillkostko I came up with another solution, using both [exorcise](https://www.npmjs.com/package/grunt-exorcise) and [uglify](https://www.npmjs.com/package/grunt-contrib-uglify). Browserify is able to produce in-line source maps, which can then be extracted into their own files using...

Considering the issue has been open 6 years and the `inflight.js` file has not been edited in 7 years, I think it's likely this isn't going to be addressed here....

@CharlieMcVicker I just encountered this error too. I am also using NextJS and yes, it occurs during server-side rendering: ``` error - ReferenceError: window is not defined at Object.browserAdaptor (/path/to/project/node_modules/mathjax-full/js/adaptors/browserAdaptor.js:6:45)...

@matildepark thanks! I was not familiar with `next/dynamic`

In case anyone finds themselves here in search of a resolution, see [my comment](https://github.com/FormidableLabs/victory/issues/1440#issuecomment-772077225) on #1440 about how I solved this for tooltips. Note that the same approach will not...

This would be especially valuable for tooltips positioned above or below the bars (or left or right of the bars in a vertical chart). They currently render with their origin...

Here's how I ended up solving this, using TypeScript: ```ts import { VictoryTooltip, VictoryTooltipProps } from 'victory'; type Coordinate = { x: number; y: number }; class CustomTooltip extends VictoryTooltip...