Skip to content

Commit

Permalink
Fixed #80
Browse files Browse the repository at this point in the history
  • Loading branch information
rmenor committed May 8, 2024
1 parent 1a4f4d6 commit 6560694
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/BootstrapAsset.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class BootstrapAsset extends AssetBundle
/**
* @inheritDoc
*/
public $sourcePath = '@bower/bootstrap';
public $sourcePath = '@bower/bootstrap/dist';

/**
* @inheritDoc
*/
public $css = [
'dist/css/bootstrap.css'
'css/bootstrap.css'
];
}
5 changes: 3 additions & 2 deletions src/BootstrapPluginAsset.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
Expand All @@ -19,13 +20,13 @@ class BootstrapPluginAsset extends AssetBundle
/**
* @inheritDoc
*/
public $sourcePath = '@bower/bootstrap';
public $sourcePath = '@bower/bootstrap/dist';

/**
* @inheritDoc
*/
public $js = [
'dist/js/bootstrap.bundle.js'
'js/bootstrap.bundle.js'
];

/**
Expand Down

0 comments on commit 6560694

Please sign in to comment.