This commit is contained in:
Mayel de Borniol 2023-12-17 19:29:42 +00:00
parent 3f27c43219
commit 310c2912d2

View file

@ -3,7 +3,7 @@ import LiveViewNative
struct ContentView: View {
var body: some View {
LiveView(.automatic(URL(string: "https://campground.bonfire.cafe/")!))
// LiveView(.automatic(development: .localhost(port: 4000, path: "/"), production: .custom(URL(string: "https://campground.bonfire.cafe/")!)))
// LiveView(.automatic(URL(string: "https://campground.bonfire.cafe/")!))
LiveView(.automatic(development: .custom(URL(string: "http://localhost:4000/")!), production: .custom(URL(string: "https://campground.bonfire.cafe/")!)))
}
}