我按照文档中的说明进行操作:
1.宅基地:https://laravel.com/docs/9.x/homestead#installation-and-setup
1.带有Vue和惯性的微风:https://laravel.com/docs/9.x/starter-kits#breeze-and-inertia
当我运行npm run build
时,一切正常。我可以通过http://homestead.test/访问我的新应用。当我尝试使用热重加载npm run dev
的dev服务器时,我的浏览器(主机)中的调试控制台告诉我:
GET http://127.0.0.1:5173/@vite/client net::ERR_CONNECTION_REFUSED
GET http://127.0.0.1:5173/resources/js/app.js net::ERR_CONNECTION_REFUSED
我已经尝试将我的 package.json 文件从"dev": "vite",
更改为"dev": "vite --host homestead.test",
,但这只会导致错误
GET http://homestead.test:5173/@vite/client net::ERR_CONNECTION_REFUSED
GET http://homestead.test:5173/resources/js/app.js net::ERR_CONNECTION_REFUSED
在 app.blade.php 中,使用@导入脚本
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title inertia>{{ config('app.name', 'Laravel') }}</title>
<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.bunny.net/css2?family=Nunito:wght@400;600;700&display=swap">
<!-- Scripts -->
@routes
@vite('resources/js/app.js')
@inertiaHead
</head>
<body class="font-sans antialiased">
@inertia
</body>
</html>
@routes
似乎是Laravel Ziggy包的一部分。从这一面没有错误。
但是@vite('resources/js/app.js')
和@inertiaHead
抛出错误。这些指令链接到错误的目标。
这怎么解决?
2条答案
按热度按时间insrf1ej1#
我已经找到了解决方案,在 * vite.config.js * 中添加服务器部分,并将app.css添加到输入中
rkue9o1l2#
我的解决方案是打开带有Vite SSL证书生成插件的HTTPS