How to use the @expo/webpack-config/plugins.ExpoDefinePlugin.fromEnv function in @expo/webpack-config

To help you get started, we’ve selected a few @expo/webpack-config examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github expo / expo-cli / packages / electron-adapter / src / Webpack.ts View on Github external
const { options } = plugin.plugin as any;
    // Replace HTML Webpack Plugin so we can interpolate it
    // @ts-ignore: webpack version mismatch
    config.plugins.splice(plugin.index, 1, new HtmlWebpackPlugin(options));
    config.plugins.splice(
      plugin.index + 1,
      0,
      // Add variables to the `index.html`
      // @ts-ignore
      ExpoInterpolateHtmlPlugin.fromEnv(env, HtmlWebpackPlugin)
    );
  }

  // Add support for expo-constants
  // @ts-ignore: webpack version mismatch
  config.plugins.push(ExpoDefinePlugin.fromEnv(env));

  // Support platform extensions
  config.resolve.extensions = getModuleFileExtensions('electron', 'web');
  config.resolve.extensions.push('.node');

  if (!options.skipEntry) {
    if (!env.locations.appMain) {
      throw new Error(
        `The entry point for your project couldn't be found. Please install \`expo\`, or define it in the package.json main field`
      );
    }

    const electronWebpackDefaultEntryPoints = [
      path.resolve(env.projectRoot, 'index'),
      path.resolve(env.projectRoot, 'app'),
    ];