7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
const createExpoWebpackConfigAsync = require('@expo/webpack-config');
|
|
|
|
module.exports = async function (env, argv) {
|
|
const config = await createExpoWebpackConfigAsync(env, argv);
|
|
// Customize the config before returning it.
|
|
return config;
|
|
};
|