getPublicUrl.ts 268 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 import { ensurePrefix } from '@antfu/utils' export const getPublicUrl = (path: string) => { const baseUrl = process.env.NUXT_APP_BASE_URL ?? '' const pathWithBaseUrl = `${baseUrl}${path}` return `${ensurePrefix('/', pathWithBaseUrl)}`.replaceAll('//', '/') }