@yesstudio/nuxt-composables
    Preparing search index...

    Interface TagPriority

    interface TagPriority {
        tagPriority?:
            | number
            | "high"
            | "low"
            | "critical"
            | `before:${string}`
            | `after:${string}`;
    }
    Index

    Properties

    Properties

    tagPriority?:
        | number
        | "high"
        | "low"
        | "critical"
        | `before:${string}`
        | `after:${string}`

    The priority for rendering the tag, without this all tags are rendered as they are registered (besides some special tags).

    The following special tags have default priorities: -2 <meta charset ...> -1 <base> 0 <meta http-equiv="content-security-policy" ...>

    All other tags have a default priority of 10: <meta>, <script>, <link>, <style>, etc