| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Shop Theme Configuration
- |--------------------------------------------------------------------------
- |
- | All the configurations are related to the shop themes.
- |
- */
- 'shop-default' => 'default',
- 'shop' => [
- 'default' => [
- 'name' => 'Default',
- 'assets_path' => 'public/themes/shop/default',
- 'views_path' => 'resources/themes/default/views',
- 'vite' => [
- 'hot_file' => 'shop-default-vite.hot',
- 'build_directory' => 'themes/shop/default/build',
- 'package_assets_directory' => 'src/Resources/assets',
- ],
- ],
- ],
- /*
- |--------------------------------------------------------------------------
- | Admin Theme Configuration
- |--------------------------------------------------------------------------
- |
- | All the configurations are related to the admin themes.
- |
- */
- 'admin-default' => 'default',
- 'admin' => [
- 'default' => [
- 'name' => 'Default',
- 'assets_path' => 'public/themes/admin/default',
- 'views_path' => 'resources/admin-themes/default/views',
- 'vite' => [
- 'hot_file' => 'admin-default-vite.hot',
- 'build_directory' => 'themes/admin/default/build',
- 'package_assets_directory' => 'src/Resources/assets',
- ],
- ],
- ],
- ];
|