1const createExpoWebpackConfigAsync = require('@expo/webpack-config');
2
3module.exports = async function (env, argv) {
4  const config = await createExpoWebpackConfigAsync(env, argv);
5  // Customize the config before returning it.
6  return config;
7};
8