On my host website after building for production Larevel 11 throws an error Vite manifest not found at: /xxxx/xxxxxx.xxxxxxxxx.xx/laravel.xxxxx.xxxxxxx.xx/public/resources/css/custom.css/manifest.json
which just seems crazy. Looking for a manifest in a directory below the css file?
The vite directive my the blade file is @vite("resources/js/app.js", "resources/css/custom.css")
My vite configuration is:
import { defineConfig } from "vite";
import laravel from "laravel-vite-plugin";
export default defineConfig({
plugins: [
laravel({
input: [
"resources/css/app.css",
"resources/js/app.js",
"resources/css/custom.css",
],
refresh: true,
}),
],
});
Has anyone seen this or have a clue what I need to be looking for?
just change @vite("resources/js/app.js", "resources/css/custom.css") to @vite(["resources/js/app.js", "resources/css/custom.css"]) and run "npm run build" and it becomes fine