From 536770a59ad2543f801dd1c362c47188858a18c4 Mon Sep 17 00:00:00 2001 From: Hugo Naili Date: Mon, 31 Dec 2018 12:07:40 -0500 Subject: [PATCH] Particle issue #498 Fix Weebpack error thrown when loading configs (#499) --- apps/pl/webpack.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/pl/webpack.config.js b/apps/pl/webpack.config.js index 68d27bebe3..c32e0d3cb8 100644 --- a/apps/pl/webpack.config.js +++ b/apps/pl/webpack.config.js @@ -90,7 +90,10 @@ const dev = { new RunScriptOnFiletypeChange({ test: /\.(twig|yml|md|json)$/, exec: [ - `npx gulp compile --config ${path.resolve(APP_PATH, 'config.js')}`, + `npx gulp compile --config ${path.resolve( + APP_PATH, + 'particle.app.config.js' + )}`, ], }), ],