It seems like you are experiencing a caching issue with your custom Nova component. Here are a few steps you can try to resolve the issue:
-
Clear Browser Cache: Start by clearing your browser cache to ensure that you are not loading any cached versions of your component. You mentioned that you have already tried different browsers, but it's still worth clearing the cache to be sure.
-
Clear Laravel Mix Cache: Laravel Mix has its own cache that can sometimes cause issues. You can try clearing the Mix cache by running the following command in your terminal:
npm run clear
This will clear the Mix cache and rebuild your assets.
-
Check Nova Configuration: Make sure that your custom component is properly registered in your Nova configuration file (
nova-components.json). Double-check the component's name and path to ensure that it is correctly referenced. -
Verify Build Process: Check your build process to ensure that the changes you are making to your
card.vuefile are being picked up and compiled correctly. You can try adding a console log or a simple change to see if it reflects in the compiled output. -
Restart Development Server: If none of the above steps work, try restarting your development server. Sometimes, the server can cache certain files, and a restart can help clear that cache.
If none of these steps resolve the issue, it might be helpful to provide more information about your setup, such as your Laravel and Nova versions, any relevant code snippets, and any error messages you are encountering.