From 41d227846357be187059c29b08661e04bd7f81e9 Mon Sep 17 00:00:00 2001 From: David Boreham Date: Fri, 31 Mar 2023 06:21:34 -0600 Subject: [PATCH] Use hosting config in build --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 00eabd8..3838909 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "build": "yarn dist", "build:babel": "babel ./src --out-dir ./dist/es --ignore \"**/*.test.js\" --source-maps inline", "clean": "rm -rf dist", - "dist": "yarn clean && yarn build:babel && CONFIG_FILE=config-production.yml webpack", + "dist": "yarn clean && yarn build:babel && CONFIG_FILE=config-hosted.yml webpack", "lint": "semistandard 'src/**/*.js'", "start": "CONFIG_FILE=${CONFIG_FILE:-config-testnet.yml} VERBOSE=true webpack-dev-server --mode development", "test": "jest --rootDir ./src --passWithNoTests --no-cache"