From d2e2955462b538ca63eedf1d83a79d03c05d3ba8 Mon Sep 17 00:00:00 2001 From: Pete Bishop Date: Tue, 18 Feb 2025 13:41:54 +0000 Subject: [PATCH] Implement default config for pre and post build keys --- config/nativephp.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/config/nativephp.php b/config/nativephp.php index da17b0b..6db1540 100644 --- a/config/nativephp.php +++ b/config/nativephp.php @@ -125,4 +125,15 @@ 'timeout' => 60, ], ], + + /** + * Define your own scripts to run before and after the build process. + */ + 'prebuild' => [ + // 'npm run build', + ], + + 'postbuild' => [ + // 'rm -rf public/build', + ], ];