<?php
namespace App;
use Illuminate\Foundation\Application;
/**
* This is an duplication of the default App.
* It changes the public folder to wwwroot
* Don't forget to update the server.php file.
* Don't forget to check your gulpfile.js
*
* Class WwwRootApp
* @package App
*/
class WwwRootApp extends Application
{
public function publicPath()
{
return $this->basePath.DIRECTORY_SEPARATOR.'wwwroot';
}
}