for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Retour plugin for Craft CMS
*
* Retour allows you to intelligently redirect legacy URLs, so that you don't
* lose SEO value when rebuilding & restructuring a website
* @link https://nystudio107.com/
* @copyright Copyright (c) 2018 nystudio107
*/
namespace nystudio107\retour\assetbundles\retour;
use craft\web\AssetBundle;
use craft\web\assets\cp\CpAsset;
use craft\web\assets\vue\VueAsset;
* @author nystudio107
* @package Retour
* @since 3.0.0
class RetourDashboardAsset extends AssetBundle
{
// Public Methods
// =========================================================================
* @inheritdoc
public function init(): void
$this->sourcePath = '@nystudio107/retour/web/assets/dist';
$this->depends = [
CpAsset::class,
VueAsset::class,
RetourAsset::class,
];
parent::init();
}