1.4.0 • Published 8 months ago

laravel-mix-herd v1.4.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

laravel-mix-herd

Laravel Mix v6 extension that makes HMR work with Laravel Herd certificates. Froked from andreiio/laravel-mix-valet to use Herd instead Valet only.

*Note: This extension assumes you already have your project linked and secured in Herd.*

Installation

Install the extension:

npm install laravel-mix-herd --save-dev

Next require the extension in your webpack.mix.js and call herd():

const mix = require('laravel-mix');
require('laravel-mix-herd');

mix.js('resources/js/app.js', 'public/js')
    .herd();

Alternatively, you can pass a config object instead, which will be merged with the defaults below:

const mix = require('laravel-mix');
require('laravel-mix-herd');

mix.js('resources/js/app.js', 'public/js')
    .herd({
        host: 'othersite.test',
        port: 12345,
    });

Options

OptionDefault
hostHostname from APP_URL
port8080
httpstrue
1.4.0

8 months ago