前提:
htdocs/react_laravel/dev
)cd /c/xampp/htdocs/react_laravel/dev
composer require laravel/breeze --dev
php artisan breeze:install react --typescript
yarn install
yarn remove vue @vitejs/plugin-vue
yarn add react react-dom
yarn add @inertiajs/inertia @inertiajs/inertia-react
yarn add -D @vitejs/plugin-react @types/react @types/react-dom
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import react from '@vitejs/plugin-react';
export default defineConfig({
server: {
host: '127.0.0.1',
port: 5173,
},
plugins: [
laravel({
input: ['resources/js/app.tsx'],
refresh: true,
}),
react(),
],
});
VITE_DEV_SERVER_HOST=127.0.0.1
// resources/js/app.tsx
import React from 'react';
import { createRoot } from 'react-dom/client';
import { createInertiaApp } from '@inertiajs/inertia-react';
import { resolvePageComponent } from 'laravel-vite-plugin/inertia-helpers';
createInertiaApp({
resolve: (name) =>
resolvePageComponent(`./Pages/${name}.tsx`, import.meta.glob('./Pages/**/*.tsx')),
setup({ el, App, props }) {
createRoot(el).render(<App {...props} />);
},
});
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My App</title>
@viteReactRefresh
@vite(['resources/js/app.tsx'])
</head>
<body>
@inertia
</body>
</html>
// resources/js/Pages/Hello.tsx
import React from 'react';
export default function Hello() {
return <h1>Hello, World!</h1>;
}
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
Route::get('/hello', function () {
return Inertia::render('Hello');
});
php artisan migrate
yarn dev
http://localhost/react_laravel/dev/public/hello
にアクセスして Hello, World! が表示されれば成功 🎉
エラー | 原因 | 対処 |
---|---|---|
Class "Inertia\Inertia" not found | Inertia Laravelが未インストール | composer require inertiajs/inertia-laravel |
View [app] not found | app.blade.php がない |
手動で作成 |
Vite manifest not found | Viteビルド未実行 | yarn dev |
@inertiajs/inertia-react not found | 依存パッケージ未導入 | yarn add @inertiajs/inertia @inertiajs/inertia-react |
GET http://[::1]:5173/〜 | IPv6経由で接続できない | .env に VITE_DEV_SERVER_HOST=127.0.0.1 を追加 |