ohseesoftware/laravel-vite-manifest

Simple Blade directive to include Vite files from a manifest.

v1.2.0 2021-08-30 04:21 UTC

This package is auto-updated.

Last update: 2024-04-29 04:40:41 UTC


README

Current Release Build Status Badge Downloads MIT License

Overview

The Laravel Vite Manifest package adds a Blade directive to include Vite's JS and CSS output files, pulled from the generated manifest file. The main logic of this package was sourced from https://github.com/andrefelipe/vite-php-setup.

Usage

composer require ohseesoftware/laravel-vite-manifest

Add the @vite directive where you want to include the JS and CSS files:

// app.blade.php

@vite

By default, the directive will attempt to include the js/app.js file. However, if you have a different entrypoint file, you can pass that into the directive:

// app.blade.php

@vite(js/main.js)

It is recommended you include your source .css files from within your source js/app.js file. This will allow Vite to include it as a dependency.

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email security@ohseesoftware.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.