From bbb50922bf2d80e6b510eaca35477efb75704722 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Mon, 19 Jul 2021 03:19:14 +0200 Subject: web build with offline support --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 5b99ea6..52cb4b4 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,10 +2,10 @@ const createExpoWebpackConfigAsync = require("@expo/webpack-config") // Expo CLI will await this method so you can optionally return a promise. module.exports = async function (env, argv) { - const config = await createExpoWebpackConfigAsync(env, argv) + const config = await createExpoWebpackConfigAsync({...env, offline: true}, argv) // If you want to add a new alias to the config. // config.resolve.alias["moduleA"] = "moduleB" - + // Maybe you want to turn off compression in dev mode. if (config.mode === "development") { config.devServer.compress = false -- cgit v1.2.3