Skip to content

tobischulz/laravel-mix-herd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Laravel Mix v6 extension to improve Herd https support

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%