From f51fc36b6dbee2f4237b439b4122089289dffb2a Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Mon, 15 Jan 2024 14:04:59 -0600 Subject: [PATCH] remove minify from netlify config --- netlify.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netlify.toml b/netlify.toml index 601059d..d62d2ed 100644 --- a/netlify.toml +++ b/netlify.toml @@ -6,14 +6,14 @@ [context.production] command = """ - hugo --minify + hugo npm i @torchlight-api/torchlight-cli npx torchlight """ [context.preview] command = """ - hugo --minify --environment preview + hugo --environment preview npm i @torchlight-api/torchlight-cli npx torchlight """ @@ -24,7 +24,7 @@ [context.drafts] command = """ - hugo --minify --environment drafts -D + hugo --environment drafts -D npm i @torchlight-api/torchlight-cli npx torchlight """