Skip to content
This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Commit eecfe6e

Browse files
author
Holger Lösken
committed
Fix publishing assets
1 parent 248da71 commit eecfe6e

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/ServiceProvider.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,13 @@ public function boot() {
4444
if ($this->app->runningInConsole()) {
4545
// Publish config
4646
$this->publishes([
47-
__DIR__ . '/../config/config.php' => config_path('magiclink.php'),
47+
__DIR__ . '/../config/config.php' => config_path('statamic-magiclink.php'),
4848
], 'magiclink-config');
49+
50+
//Publish views
51+
$this->publishes([
52+
__DIR__ . '/../resources/views' => resource_path('views/vendor/statamic-magiclink/views'),
53+
], 'magiclink-views');
4954
}
5055
}
5156

0 commit comments

Comments
 (0)