Mustafa Turhan
Mustafa Turhan
I've also run into same issue with [email protected]. I though downgrading swagger-ui-react to 4.8.1 can solve this problem but it was breaking my application after build. It was showing an...
For the people who use `nextjs`, if you don't want to use `ssr: false` -which is exclude lightweight-charts from `getStaticProps` build-, you may want to use [next-transpile-modules](https://www.npmjs.com/package/next-transpile-modules) instead. - Open...
@caugner i am closing this pr in favor of https://github.com/mdn/yari/pull/7035 and future implementations. wdyt?
This issue amazing for me. I can take it ✌️
Some problems, #### declaration-property-value-disallowed-list - [stylelint-config-sass-guidelines](https://github.com/bjankord/stylelint-config-sass-guidelines/blob/0fe0f3e758b8b06e3adeee06a822610a92bbff3a/index.js#L22) forbids usage of `border: none` and it cause error. (`declaration-property-value-disallowed-list`) ##### Solutions - I don't think that disabling `declaration-property-value-disallowed-list` will cause any problem. So...
@caugner I am here with more questions🙂 #### watch-submenu-setGlobal What is this? It throws `selector-class-pattern` error since `setGlobal` isn't written in kebab-case. I will change it but can't find where...
@caugner wow! this is the first time I saw that command, thank you. > By how much would the errors decrease if we increased it to 4 or 5 respectively?...
@caugner apparently, they can be easily and safely resolved so I set it as a `5`. you may check https://github.com/mdn/yari/pull/6456.
Looks like changing `moduleNameMapper` from `axios` to `^axios$` makes it work: ``` moduleNameMapper: { '^axios$': 'axios/dist/node/axios.cjs', } ```