mirror of
https://github.com/filamentphp/plugin-skeleton.git
synced 2025-12-06 21:48:53 +08:00
Fix: Update resource paths in service provider
This commit is contained in:
@@ -22,15 +22,15 @@ class SkeletonServiceProvider extends PluginServiceProvider
|
|||||||
];
|
];
|
||||||
|
|
||||||
protected array $styles = [
|
protected array $styles = [
|
||||||
'plugin-skeleton' => __DIR__ . '/../dist/skeleton.css',
|
'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.css',
|
||||||
];
|
];
|
||||||
|
|
||||||
protected array $scripts = [
|
protected array $scripts = [
|
||||||
'plugin-skeleton' => __DIR__ . '/../dist/skeleton.js',
|
'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.js',
|
||||||
];
|
];
|
||||||
|
|
||||||
// protected array $beforeCoreScripts = [
|
// protected array $beforeCoreScripts = [
|
||||||
// 'plugin-skeleton' => __DIR__ . '/../dist/skeleton.js',
|
// 'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.js',
|
||||||
// ];
|
// ];
|
||||||
|
|
||||||
public function configurePackage(Package $package): void
|
public function configurePackage(Package $package): void
|
||||||
|
|||||||
Reference in New Issue
Block a user