From a216eddfb98f5aaae37f047bddcdcd33f36276d7 Mon Sep 17 00:00:00 2001 From: Kohei Watanabe Date: Wed, 13 Jan 2021 10:34:38 +0900 Subject: [PATCH] fix: build error "config.experiments.optimize" is now "config.optimize" --- snowpack.config.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/snowpack.config.json b/snowpack.config.json index 9444d52..2ad4833 100644 --- a/snowpack.config.json +++ b/snowpack.config.json @@ -3,11 +3,9 @@ "clean": true }, "mount": { "src": { "url": "/" } }, - "experiments": { - "optimize": { - "bundle": true, - "minify": true, - "target": "esnext" - } + "optimize": { + "bundle": true, + "minify": true, + "target": "esnext" } }