Laravel「エントリポイント変えたろ」
app/Providers/AppServiceProvider.php
public function register()
{
// set the public path to this directory
$this->app->bind('path.public', function() {
return base_path().'/public_html';
});
}
server.php
// require_once __DIR__.'/public/index.php';
if ($uri !== '/' && file_exists(__DIR__.'/public_html'.$uri)) {
return false;
}
require_once __DIR__.'/public_html/index.php';
webpack.mix.js
mix.setPublicPath('public_html/')
Laravelのバージョンについて
バージョンは8系です。ご了承ください。
参考リンク