dxx
dxx
I have the same problem. When i use `mini-css-extract-plugin` plugin, even if pass `sourceMap=true` in `css-loader`, source maps are not output
I resolved this problem by pass some options ``` new OptimizeCSSAssetsPlugin({ cssProcessorOptions: { map: { inline: false } } }) ```
@jimblue I'am sorry about i misunderstand your meaning.
已修复,见 [https://github.com/dxx/feignhttp/commit/d445274d5af4a5d2baa801fec45400b7c10f9932](https://github.com/dxx/feignhttp/commit/d445274d5af4a5d2baa801fec45400b7c10f9932)
可能是 `npm install` 后依赖包的版本问题,对比看下 `package-lock.json` 中对应的版本。
有可能是 `npm install` 后依赖包的版本问题,对比看下 `package-lock.json` 中对应的版本。
React typescript 包相关的版本,你安装的可能不是 package.json 里面的版本,不兼容就报错了
@rxl123 服务端api运行起来了吗
`feignhttp` does not support SSL. If you want to use SSL, you should use `reqwest` or other crates.
You can see [here](https://github.com/dxx/feignhttp/blob/dev/examples/struct.rs). This is an example: ```rust #[derive(Feign)] pub struct Header { #[header] pub user_agent: String, #[header] pub access_token: String, } #[feign(url = "http://127.0.0.1")] impl Header { #[post]...