Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
bc1d2d6
VITE_CHANGE: use vite on the normal Login
henryjonathanquispe Jul 17, 2026
b493831
VITE INBOX: POC to test the ease of migrating other views to vite
henryjonathanquispe Jul 20, 2026
c4365ce
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Jul 23, 2026
e2aed60
VITE_INBOX: update HMR
henryjonathanquispe Jul 24, 2026
3765618
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Jul 28, 2026
cac46ac
VITE_INBOX: update npm run dev
henryjonathanquispe Jul 29, 2026
f7aaa38
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Jul 29, 2026
24fcd57
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Jul 31, 2026
e26286c
Merge branch 'develop' into VITE_INBOX
nolanpro Aug 3, 2026
90901f0
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Aug 4, 2026
59ca8b8
Merge branch 'VITE_INBOX' of github.com:ProcessMaker/processmaker int…
henryjonathanquispe Aug 4, 2026
a15b50c
VITE_INBOX: update vite config, remove refresh in js, vue files
henryjonathanquispe Aug 4, 2026
702b7cb
Fix vite HMR for vue2
nolanpro Aug 5, 2026
83fb9b0
Merge pull request #8980 from ProcessMaker/fix-hmr
nolanpro Aug 5, 2026
af7f6d6
Merge branch 'develop' of github.com:ProcessMaker/processmaker into V…
henryjonathanquispe Aug 6, 2026
51260df
Merge branch 'VITE_INBOX' of github.com:ProcessMaker/processmaker int…
henryjonathanquispe Aug 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ yarn-error.log
/public/img
/public/fonts
/public/mix-manifest.json
/public/build
/public/hot
/public/stats.json
tests/js/coverage
tests/coverage-report
Expand Down
5 changes: 5 additions & 0 deletions ProcessMaker/Providers/ProcessMakerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\Facades\URL;
use Illuminate\Support\Facades\Vite;
use Laravel\Horizon\Horizon;
use Laravel\Horizon\SystemProcessCounter;
use Laravel\Horizon\WorkerCommandString;
Expand Down Expand Up @@ -84,6 +85,10 @@ public function boot(): void
// Track the start time for service providers boot
self::$bootStart = microtime(true);

// Vite hot file must not be public/hot — that file is reserved for Mix HMR
// and would make mix('js/...') URLs point at the Vite dev server (404).
Vite::useHotFile(storage_path('vite.hot'));

// Set the current tenant
$this->setCurrentTenantForConsoleCommands();

Expand Down
Loading
Loading