Skip to content

Commit

Permalink
Merge pull request filamentphp#9 from filamentphp/fix/resource-paths
Browse files Browse the repository at this point in the history
Fix: Update resource paths in service provider
  • Loading branch information
awcodes authored Sep 14, 2022
2 parents aeefd7a + f79186a commit 1f7bba1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SkeletonServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ class SkeletonServiceProvider extends PluginServiceProvider
];

protected array $styles = [
'plugin-skeleton' => __DIR__ . '/../dist/skeleton.css',
'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.css',
];

protected array $scripts = [
'plugin-skeleton' => __DIR__ . '/../dist/skeleton.js',
'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.js',
];

// protected array $beforeCoreScripts = [
// 'plugin-skeleton' => __DIR__ . '/../dist/skeleton.js',
// 'plugin-skeleton' => __DIR__ . '/../resources/dist/skeleton.js',
// ];

public function configurePackage(Package $package): void
Expand Down

0 comments on commit 1f7bba1

Please sign in to comment.