Replace Laravel Mix with Bud (#2643)
Co-authored-by: QWp6t <hi@qwp6t.me> Co-authored-by: Ben Word <ben@benword.com>
This commit is contained in:
@@ -41,7 +41,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'debug' => WP_DEBUG,
|
||||
'debug' => WP_DEBUG && WP_DEBUG_DISPLAY,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -56,19 +56,6 @@ return [
|
||||
|
||||
'timezone' => get_option('timezone_string', 'UTC'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Global Helpers
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value enables the usage of various Acorn helpers without the need
|
||||
| to specify a namespace. This defaults to false as to not pollute the
|
||||
| global namespace.
|
||||
|
|
||||
*/
|
||||
|
||||
'globals' => false,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Locale Configuration
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
|
||||
use function Roots\public_path;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
@@ -36,7 +34,8 @@ return [
|
||||
'theme' => [
|
||||
'path' => get_theme_file_path('public'),
|
||||
'url' => get_theme_file_uri('public'),
|
||||
'assets' => public_path('mix-manifest.json'),
|
||||
'assets' => public_path('manifest.json'),
|
||||
'bundles' => public_path('entrypoints.json'),
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
@@ -5,7 +5,6 @@ use Monolog\Handler\StreamHandler;
|
||||
use Monolog\Handler\SyslogUdpHandler;
|
||||
|
||||
use function Roots\env;
|
||||
use function Roots\storage_path;
|
||||
|
||||
return [
|
||||
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
<?php
|
||||
|
||||
use function Roots\resource_path;
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user