Skip to content

Commit

Permalink
Merge pull request #39 from userfrosting/analysis-APr0bV
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
lcharette authored Jul 3, 2024
2 parents 3a783fd + 209c1e3 commit 60da926
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/ServicesProvider/ViteService.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ public function register(): array
ViteManifestInterface::class => function (ResourceLocatorInterface $locator, Config $config) {
$manifestFile = $config->getString('assets.vite.manifest', 'public://.vite/manifest.json');
$manifestFile = (string) $locator->getResource($manifestFile);

return new ViteManifest(
manifestPath: $manifestFile,
basePath: $config->getString('assets.vite.base', ''),
devEnabled: $config->getBool('assets.vite.dev', true),
serverUrl: $config->getString('assets.vite.server', ''),
);
}
},
];
}
}

0 comments on commit 60da926

Please sign in to comment.