bagisto-vite.php 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Bagisto Vite Configuration
  6. |--------------------------------------------------------------------------
  7. |
  8. | Please add your Vite registry here to seamlessly support the `bagisto_assets` function.
  9. |
  10. */
  11. 'viters' => [
  12. 'admin' => [
  13. 'hot_file' => 'admin-default-vite.hot',
  14. 'build_directory' => 'themes/admin/default/build',
  15. 'package_assets_directory' => 'src/Resources/assets',
  16. ],
  17. 'shop' => [
  18. 'hot_file' => 'shop-default-vite.hot',
  19. 'build_directory' => 'themes/shop/default/build',
  20. 'package_assets_directory' => 'src/Resources/assets',
  21. ],
  22. 'installer' => [
  23. 'hot_file' => 'installer-default-vite.hot',
  24. 'build_directory' => 'themes/installer/default/build',
  25. 'package_assets_directory' => 'src/Resources/assets',
  26. ],
  27. ],
  28. ];