Skip to content

Instantly share code, notes, and snippets.

@codenuke
Created February 9, 2018 07:19
Show Gist options
  • Save codenuke/32925a2cdfb5a1d04fee292a5ee21032 to your computer and use it in GitHub Desktop.
Save codenuke/32925a2cdfb5a1d04fee292a5ee21032 to your computer and use it in GitHub Desktop.
Laravel Fix
App\Providers Insert in boot function
--------------------------------------
#change default for mysql
Schema::defaultStringLength(191);
if (env('APP_ENV') === 'production')
{
$url->forceScheme('htps');
}
package.json
--------------------------------------
#force js-beautify verstion to 1.6.14
"resolutions":{
"js-beautify":"1.6.14"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment