我刚刚安装了Laravel Valet。除了网站共享功能之外,其他所有功能都可以正常运行。
输入
import {InMemoryWebApiModule} from 'angular-in-memory-web-api';
import {InMemoryDataService} from './in-memory-data.service';
@NgModule({
imports: [
BrowserModule,
FormsModule,
InMemoryWebApiModule.forRoot(InMemoryDataService, {apiBase: '/api'})
],
declarations: [AppComponent],
bootstrap: [UIView]
})
在Ngrok打开之前,终端返回以下输出:
valet share
Ngrok给了我一个公共URL,但是我的浏览器返回了一个标题为无法完成隧道连接和错误消息 dial tcp:lookup myurl.test on 192.168.0.1:53的页面:没有这样的主机。
我该如何解决?
非常感谢大家!