Valor Lin
Valor Lin
Same problem. Any idea?
As far as I know, it's caused by `@babel/plugin-proposal-class-properties`. The code above was compiled to something like: ```ts class Game extends React.Component { constructor() { // This is why the...
Use a workaround to make the inject work. ```ts class Game extends React.Component { gameService: GameService = container.get(GameService); } ```
@stephanebachelier All done : )
I think `?__inline=true` should be ignored when concating file.
In this pull request #443 , I just make a little change, and now it works fine for me.
The problem here is, `common.min.css?__inline=true` is a valid url , but not a valid file path. To resolve this, I convert the url into a file path by remove the...
It's really slow in big projects. How to do this?
@ZombieChibiXD's solution looks fancy, but it doesn't work for everyone. The right way to find the short path should be running `dir /x` in `C:\Users`.  It's `VALORL~1` for me...
Same issue, manually start the service and it is fixed: ```shell sudo launchctl load -w /Library/LaunchDaemons/com.zerotier.one.plist ```