LoginSignup
3
3

More than 5 years have passed since last update.

Application In Production!を表示させない方法

Last updated at Posted at 2014-06-09

Laravel Homesteadを使った場合、Application In Production!の表示が出る場合があります。

この表示を出さないようにする方法になります。

方法

bootstrap/start.phpを以下のように編集します。

$env = $app->detectEnvironment(array(

        'local' => array('*'),
        // 'local' => array('your-machine-name'),

));

この対処の詳しい説明は以下の「環境の設定」の項をお読み下さい。

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3