We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ca124 commit 5c1fde2Copy full SHA for 5c1fde2
src/index.ts
@@ -159,9 +159,9 @@ function resolveLaravelPlugin(pluginConfig: Required<PluginConfig>): LaravelPlug
159
fs.writeFileSync(hotFile, viteDevServerUrl)
160
161
setTimeout(() => {
162
- server.config.logger.info(colors.red(`\n Laravel ${laravelVersion()} `))
163
- server.config.logger.info(`\n > APP_URL: ` + colors.cyan(appUrl))
164
- })
+ server.config.logger.info(colors.red(`\n ${colors.bold('Laravel')} ${laravelVersion()} `))
+ server.config.logger.info(` ${colors.green('➜')} ${colors.bold('APP_URL')}: ${colors.cyan(appUrl.replace(/:(\d+)/, (_, port) => `:${colors.bold(port)}`))}`)
+ }, 100)
165
}
166
})
167
0 commit comments