static.php 445 B

12345678910111213
  1. <?php
  2. /**
  3. * Entry point for static resources (JS, CSS, etc.)
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. require realpath(__DIR__) . '/../app/bootstrap.php';
  9. $bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
  10. /** @var \Magento\Framework\App\StaticResource $app */
  11. $app = $bootstrap->createApplication(\Magento\Framework\App\StaticResource::class);
  12. $bootstrap->run($app);