Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add custom build directory and hot file to Vite tag #6752

Merged
merged 3 commits into from Sep 21, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/Tags/Vite.php
Expand Up @@ -17,6 +17,13 @@ public function index()
throw new \Exception('Please provide a source file.');
}

return app(LaravelVite::class)($src);
$directory = $this->params->get('directory');
joshuablum marked this conversation as resolved.
Show resolved Hide resolved
$hot = $this->params->get('hot');

return app(LaravelVite::class)
->withEntryPoints($src)
->useBuildDirectory($directory)
->useHotFile($hot)
joshuablum marked this conversation as resolved.
Show resolved Hide resolved
->toHtml();
}
}