(str: string)
| 31 | import type { PluginOption } from 'vite' |
| 32 | |
| 33 | function isFullUrl(str: string): boolean { |
| 34 | try { |
| 35 | new URL(str) |
| 36 | return true |
| 37 | } catch { |
| 38 | return false |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | export function TanStackStartVitePluginCore( |
| 43 | corePluginOpts: TanStackStartVitePluginCoreOptions, |