Umbenennung presseportale → pressekonto in Domains, Themes und Dokumentation. Design-Tokens, Portal-Shell, Customer-Dashboard, Auth- und Admin-PM-Views. Artisan-Befehl migrate:legacy-media mit Tests und Hub-Flux-Entwicklungsdocs. Co-authored-by: Cursor <cursoragent@cursor.com>
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Vite Build Paths
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Vite build paths are used to determine where the built assets are located.
|
|
| This is different per domain.
|
|
|
|
|
*/
|
|
|
|
'build_path' => env('VITE_BUILD_PATH', 'build'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Dev Server URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is the URL that Vite dev server is running on. In development,
|
|
| Laravel will load assets from this URL. The URL is dynamically set
|
|
| based on the current domain via ThemeServiceProvider.
|
|
|
|
|
*/
|
|
|
|
'dev_url' => env('ASSET_URL', env('VITE_DEV_SERVER_URL', 'https://assets.pressekonto.test')),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Hot File
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The "hot" file is used to determine if the dev server is running.
|
|
|
|
|
*/
|
|
|
|
'hot_file' => public_path('hot'),
|
|
|
|
];
|