themes.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Shop Theme Configuration
  6. |--------------------------------------------------------------------------
  7. |
  8. | All the configurations are related to the shop themes.
  9. |
  10. */
  11. 'shop-default' => 'default',
  12. 'shop' => [
  13. 'default' => [
  14. 'name' => 'Default',
  15. 'assets_path' => 'public/themes/shop/default',
  16. 'views_path' => 'resources/themes/default/views',
  17. 'vite' => [
  18. 'hot_file' => 'shop-default-vite.hot',
  19. 'build_directory' => 'themes/shop/default/build',
  20. 'package_assets_directory' => 'src/Resources/assets',
  21. ],
  22. ],
  23. ],
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Admin Theme Configuration
  27. |--------------------------------------------------------------------------
  28. |
  29. | All the configurations are related to the admin themes.
  30. |
  31. */
  32. 'admin-default' => 'default',
  33. 'admin' => [
  34. 'default' => [
  35. 'name' => 'Default',
  36. 'assets_path' => 'public/themes/admin/default',
  37. 'views_path' => 'resources/admin-themes/default/views',
  38. 'vite' => [
  39. 'hot_file' => 'admin-default-vite.hot',
  40. 'build_directory' => 'themes/admin/default/build',
  41. 'package_assets_directory' => 'src/Resources/assets',
  42. ],
  43. ],
  44. ],
  45. ];