Skip to content

Commit f3dce0b

Browse files
dargmuesliharlan-zw
andauthoredMar 18, 2025··
fix(stack): correct hostname check (#50)
Co-authored-by: Harlan Wilton <harlan@harlanzw.com>
1 parent d3e100d commit f3dce0b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎packages/site-config/src/stack.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { GetSiteConfigOptions, SiteConfigInput, SiteConfigResolved, SiteConfigStack } from './type'
2-
import { getQuery, hasProtocol, parseURL, withHttps } from 'ufo'
2+
import { getQuery, hasProtocol, parseURL, withHttps, parseHost } from 'ufo'
33
import { toValue } from 'vue'
44

55
export function normalizeSiteConfig(config: SiteConfigResolved) {
@@ -32,6 +32,7 @@ export function validateSiteConfigStack(stack: SiteConfigStack) {
3232
const val = resolved.url
3333
const context = resolved._context?.url || 'unknown'
3434
const url = parseURL(val)
35+
const { hostname } = parseHost(url.host)
3536
if (!url.host)
3637
errors.push(`url "${val}" from ${context} is not absolute`)
3738
else if (url.pathname && url.pathname !== '/')
@@ -40,7 +41,7 @@ export function validateSiteConfigStack(stack: SiteConfigStack) {
4041
errors.push(`url "${val}" from ${context} should not contain a hash`)
4142
else if (Object.keys(getQuery(val)).length > 0)
4243
errors.push(`url "${val}" from ${context} should not contain a query`)
43-
else if (url.host === 'localhost' && resolved.env !== 'development')
44+
else if (hostname === 'localhost' && resolved.env !== 'development')
4445
errors.push(`url "${val}" from ${context} should not be localhost`)
4546
}
4647
return errors

0 commit comments

Comments
 (0)
Please sign in to comment.