Replies: 1 comment
-
|
That's not an issue with this package, you have to do that in order to register the custom theme. Which is a filament feature and in the provided link it's documented here and the command also notified you after you create the theme. 🙂 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The documentation did not mention this, but in Filament, you still need to add the line in vite.config.js for example;
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/css/filament/app/theme.css',
'resources/js/app.js',
],
refresh: true,
}),
],
});
Beta Was this translation helpful? Give feedback.
All reactions