jjaros
Results
2
comments of
jjaros
Hi, I probably had a similar issue. I needed to set up `axios.defaults.proxy`. As you can see, the `swagger-typescript-api` uses own `axios` dependency (https://github.com/acacode/swagger-typescript-api/blob/next/package.json#L64), so I simply imported this `axios`...
Hi, I simply updated the `scripts` in my project _package.json_ as follows: ``` "scripts": { ... "generate-api": "ts-node build-scripts/generate-api && eslint --fix \"src/models/swagger-gen/*.ts?(x)\"", "build": "yarn generate-api && react-scripts build", ......