laravel-mix-herd

1.4.0 • Public • Published

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

Option Default
host Hostname from APP_URL
port 8080
https true

Package Sidebar

Install

npm i laravel-mix-herd

Weekly Downloads

0

Version

1.4.0

License

MIT

Unpacked Size

5.42 kB

Total Files

5

Last publish

Collaborators

  • tobischulz