Skip to content

Commit

Permalink
Merge pull request #25 from laravel/custom-server-host
Browse files Browse the repository at this point in the history
Respect server.host variable in hot file
  • Loading branch information
jessarcher authored Jun 24, 2022
2 parents e82dfd1 + 436cdc7 commit 30a52b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ export default function laravel(config: string|string[]|PluginConfig): LaravelPl
const isAddressInfo = (x: string|AddressInfo|null|undefined): x is AddressInfo => typeof x === 'object'
if (isAddressInfo(address)) {
const protocol = server.config.server.https ? 'https' : 'http'
const host = address.family === 'IPv6' ? `[${address.address}]` : address.address
const configHost = typeof server.config.server.host === 'string' ? server.config.server.host : null
const serverAddress = address.family === 'IPv6' ? `[${address.address}]` : address.address
const host = configHost ?? serverAddress
viteDevServerUrl = `${protocol}://${host}:${address.port}`
fs.writeFileSync(hotFile, viteDevServerUrl)

Expand Down

0 comments on commit 30a52b2

Please sign in to comment.