* enhance(view): Add light default styling for Tailwind * chore(view): Clean up unnecessary selectors and spacing * feat(acorn): Update Acorn for Laravel 8.x * chore(acorn): Create default `bootstrap/` project directory for Laravel 8.x * refactor(acorn): Split the Acorn bootloader between `functions.php` and `bootstrap/app.php` to coincide with Laravel * refactor(assets): Lighten the out of the box CSS boilerplate * refactor(assets): Rename `dist/` to `public/` to coincide with Laravel * refactor(assets): Flatten the `assets/` directory into `resources/` to coincide with Laravel * refactor(assets): Rename `scripts/` to `js/` to coincide with Laravel * refactor(assets): Rename `styles/` to `css/` to coincide with Laravel * feat(deps): Update to Laravel Mix ^6.0 * chore(deps): Change Mix-related package.json `scripts` to the new `mix` binary * chore(deps): Remove PurgeCSS in favor of Tailwind's built in purge * chore(deps): Remove deprecated/unnecessary/unused dependencies * chore(deps): Bump minimum PHP version to 7.3 to coincide with Laravel 8.x
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Register The Auto Loader
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Composer provides a convenient, automatically generated class loader for
|
|
| our theme. We will simply require it into the script here so that we
|
|
| don't have to worry about manually loading any of our classes later on.
|
|
|
|
|
*/
|
|
|
|
if (! file_exists($composer = __DIR__ . '/vendor/autoload.php')) {
|
|
wp_die(__('Error locating autoloader. Please run <code>composer install</code>.', 'sage'));
|
|
}
|
|
|
|
require $composer;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Run The Theme
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Once we have the theme booted, we can handle the incoming request using
|
|
| the application's HTTP kernel. Then, we will send the response back
|
|
| to this client's browser, allowing them to enjoy our application.
|
|
|
|
|
*/
|
|
|
|
require_once __DIR__ . '/bootstrap/app.php';
|