Brandon Evans

Results 7 comments of Brandon Evans

I have a similar issue. I think the CSS file is being interpreted as JavaScript.

I believe that this is an issue with `@zeit/next-css`, which is deprecated. Unfortunately, there are issues with Next's built-in CSS support and node_modules that include CSS: https://github.com/vercel/next.js/issues/12079

I was very stubborn with this and eventually got it working with the [next-transpile-modules](https://www.npmjs.com/package/next-transpile-modules) plugin: ```javascript const withTM = require('next-transpile-modules')(['react-chat-window']); ``` I also had to remove my usage of `next-images`....

This is far from an elegant workaround, but [I wrote a script to forward traffic through a Node.js server using Express that overrides the Host header](https://github.com/BrandonE/zaproxy-node-forwarder).

I just merged a PR that made a couple of modifications to the Dockerfile. Could you check to see if these help at all for your issue? Thanks!

Understood. I haven't looked into this issue in-depth, but from what you're describing, it sounds like this could be an issue that is also prevalent in the official [Lichess Development...

> Why remove the Dockerfile? Some people don't want to trust/depend on a external image such as `gmolaire/lila-build-tools`. > > Edit: found that https://github.com/gmolaire/lila-docker-build-tools and https://github.com/gmolaire/docker-sbt/blob/master/Dockerfile > I think it...