Created
February 9, 2018 07:19
-
-
Save codenuke/32925a2cdfb5a1d04fee292a5ee21032 to your computer and use it in GitHub Desktop.
Laravel Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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