@@ -19,7 +19,7 @@ import com.varabyte.kobweb.cli.common.kotter.warnFallingBackToPlainText
19
19
import com.varabyte.kobweb.cli.common.showStaticSiteLayoutWarning
20
20
import com.varabyte.kobweb.cli.common.waitForAndCheckForException
21
21
import com.varabyte.kobweb.cli.stop.handleStop
22
- import com.varabyte.kobweb.common.navigation.RoutePrefix
22
+ import com.varabyte.kobweb.common.navigation.BasePath
23
23
import com.varabyte.kobweb.server.api.ServerEnvironment
24
24
import com.varabyte.kobweb.server.api.ServerRequest
25
25
import com.varabyte.kobweb.server.api.ServerRequestsFile
@@ -132,8 +132,8 @@ private fun handleRun(
132
132
var serverState: ServerState ? = null // Set on and after RunState.RUNNING
133
133
var cancelReason by liveVarOf(" " )
134
134
var exception by liveVarOf<Exception ?>(null ) // Set if RunState.INTERRUPTED
135
- // If a route prefix is set, we'll add it to the server URL (at which point we'll need to add slash dividers)
136
- val routePrefix = RoutePrefix (conf.site.routePrefix )
135
+ // If a base path is set, we'll add it to the server URL (at which point we'll need to add slash dividers)
136
+ val basePath = BasePath (conf.site.basePathOrRoutePrefix )
137
137
section {
138
138
textLine() // Add text line between this block and Gradle output above
139
139
@@ -149,7 +149,7 @@ private fun handleRun(
149
149
serverState!! .let { serverState ->
150
150
green {
151
151
text(" Kobweb server ($envName ) is running at " )
152
- cyan { text(" http://localhost:${serverState.port}$routePrefix " ) }
152
+ cyan { text(" http://localhost:${serverState.port}$basePath " ) }
153
153
}
154
154
textLine(" (PID = ${serverState.pid} )" )
155
155
textLine()
0 commit comments