From efab9761b509e8735ad7b94320ba976403d9f5ea Mon Sep 17 00:00:00 2001 From: philipp lang Date: Sat, 20 Nov 2021 15:43:36 +0100 Subject: [PATCH] Fix live url --- stepper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepper.php b/stepper.php index 43e4578..81ab198 100644 --- a/stepper.php +++ b/stepper.php @@ -22,6 +22,6 @@ $stepper->loadEnv(__DIR__); $stepper->url = plugin_dir_url(__FILE__); $stepper->scriptUrl = file_exists(__DIR__.'/assets/public/hot') ? 'http://localhost:8080/' - : plugin_dir_url(__FILE__); + : plugin_dir_url(__FILE__).'assets/public/'; $stepper->initFrontend();