Vite で、下記のエラーが発生する場合があります。
Unable to locate file in Vite manifest: resources/css/app.css.
この場合には、下記のファイルに、css ファイルの記述を追加することで解決できます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; import react from '@vitejs/plugin-react'; export default defineConfig({ server: { host: true, hmr: { host: 'localhost', }, watch: { usePolling: true }, }, plugins: [ laravel({ input: [ 'resources/css/app.css', //これを追加 'resources/js/app.jsx' ], refresh: true, }), react(), ], }); |
参考サイト
Unable to locate file in Vite manifest: resources/css/app.css
https://laracasts.com/discuss/channels/laravel/unable-to-locate-file-in-vite-manifest-resourcescssappcss