"Hello" app on Laravel / Homestead with Vue and Vite gives a CORS error in the browser console
Laravel Framework 11.20.0 @vitejs/[email protected] vite.config.js: import { defineConfig } from 'vite'; import laravel from 'laravel-vite-plugin'; export default defineConfig({ plugins: [ laravel({ input: ['resources/js/app.js', 'resources/css/app.css'], refresh: true, }), ], }); app.js: import { createApp } from 'vue'; const app = createApp({…