sbland
sbland
Has this been implemented yet I still have this issue in VScode with Python
Has anyone found a workaround for this?
@tclune I have made it system agnostic so should work on anything with docker setup.
Possibly related to https://github.com/remix-run/react-router/issues/8809
> @jonatankBIT Are you can saying that `bit lint` should take into account rule the rule settings defined in `.eslintrc.js`? I don't think this feature is working as intended, unfortunately,...
I had to hack the process.env.MONGO_URL variable as below to get this to work `const full_url = DB_NAME ? MONGO_URL.split('/').slice(0, -1).join('/') + '/' + DB_NAME : MONGO_URL;` This converted `mongodb://127.0.0.1:41185/1605a3c8-5a40-4d93-880a-bb186f222db7`...
@NitsanCohen770 can you suggest an alternative to env vars that works in Bit? I tried setting up a custom env with a webpack config transformation to inject the variables into...
I managed to hack together a solution that I think may be using an old version of a custom React bit env but it's working for me. The solution below...
@coreyaus my `devServerConfigTransformer` looks exactly the same as `previewConfigTransformer` ```tsx export const devServerConfigTransformer: WebpackConfigTransformer = ( config: WebpackConfigMutator, context: WebpackConfigTransformContext ) => { const newConfig = commonTransformation(config, context); return newConfig;...
@Jagadishvg create a react environment by following the steps here: https://bit.dev/docs/react-env/set-up-your-env/ making sure to assign the env to your component. Then in `my-custom-env/config/webpack.config.ts` add the following... ```ts import type {...