Answers for "how to add base url as src in react native"

0

how to add base url as src in react native

module.exports = {
  ...other config

  plugins: [
    ['module-resolver', {
      root: [
        './src',
      ],
      "alias": {
        "~": "./src",
      }
    }],
  ],
};
Posted by: Guest on August-03-2021

Code answers related to "how to add base url as src in react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language