Skip to content
Snippets Groups Projects
Select Git revision
  • 2f53d0f57b949789702a6f60764b61d7ae587182
  • annotation-on-video default protected
  • demo_ci
  • 3-upstream-01022023
  • master
  • gh3538-captions
  • 16-adapt-for-images-annot
  • 15-api-for-annotations-on-video
  • 15-annotations-on-videos
  • video_for_annotations
  • wip-1-annotations-on-videos
  • 9-videoviewer-tests
  • 9_wip_videotests
  • 6-fix-tests-and-ci
  • _fix_ci
  • wip-webpack-from-git
16 results

webpack.config.js

Blame
  • bootstrap.php 345 B
    <?php
    
    use Symfony\Component\Dotenv\Dotenv;
    
    require dirname(__DIR__) . '/vendor/autoload.php';
    
    if (file_exists(dirname(__DIR__) . '/config/bootstrap.php')) {
        require dirname(__DIR__) . '/config/bootstrap.php';
    } elseif (method_exists(Dotenv::class, 'bootEnv')) {
        (new Dotenv())->usePutenv(true)->bootEnv(dirname(__DIR__) . '/.env');
    }