nuxt-ignis 0.5.1 → 0.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.data/content/contents.sqlite +0 -0
- package/.env +3 -2
- package/.nuxt/app.config.mjs +25 -1
- package/.nuxt/components.d.ts +480 -480
- package/.nuxt/content/components.ts +185 -208
- package/.nuxt/dev/index.mjs +660 -588
- package/.nuxt/dev/index.mjs.map +1 -1
- package/.nuxt/dist/server/client.manifest.mjs +1 -1
- package/.nuxt/dist/server/client.precomputed.mjs +1 -1
- package/.nuxt/eslint-typegen.d.ts +22 -1
- package/.nuxt/eslint.config.d.mts +3 -3
- package/.nuxt/eslint.config.mjs +10 -10
- package/.nuxt/image/providers.d.ts +52 -0
- package/.nuxt/imports.d.ts +79 -68
- package/.nuxt/manifest/latest.json +1 -1
- package/.nuxt/manifest/meta/dev.json +1 -1
- package/.nuxt/mdc-highlighter.mjs +4 -3
- package/.nuxt/mdc-image-component.mjs +1 -1
- package/.nuxt/mdc-imports.mjs +2 -2
- package/.nuxt/module/nuxt-robots.d.ts +13 -12
- package/.nuxt/module/nuxt-seo-utils.d.ts +10 -10
- package/.nuxt/module/nuxt-site-config.d.ts +8 -8
- package/.nuxt/module/nuxt-sitemap.d.ts +18 -18
- package/.nuxt/nitro.json +5 -5
- package/.nuxt/nuxt.d.ts +11 -12
- package/.nuxt/nuxt.json +2 -2
- package/.nuxt/nuxt.node.d.ts +12 -11
- package/.nuxt/nuxt.shared.d.ts +1 -0
- package/.nuxt/tsconfig.app.json +234 -241
- package/.nuxt/tsconfig.json +237 -244
- package/.nuxt/tsconfig.node.json +133 -132
- package/.nuxt/tsconfig.server.json +154 -162
- package/.nuxt/tsconfig.shared.json +69 -75
- package/.nuxt/types/app.config.d.ts +25 -1
- package/.nuxt/types/build.d.ts +1 -2
- package/.nuxt/types/components.d.ts +480 -480
- package/.nuxt/types/i18n-plugin.d.ts +2 -2
- package/.nuxt/types/imports.d.ts +395 -362
- package/.nuxt/types/modules.d.ts +24 -46
- package/.nuxt/types/nitro-imports.d.ts +390 -390
- package/.nuxt/types/nitro-nuxt.d.ts +2 -1
- package/.nuxt/types/nitro-routes.d.ts +25 -25
- package/.nuxt/types/plugins.d.ts +42 -42
- package/.nuxt/types/runtime-config.d.ts +56 -2
- package/.nuxt/types/ui.d.ts +3 -2
- package/.nuxt/ui/auth-form.ts +20 -0
- package/.nuxt/ui/badge.ts +1 -1
- package/.nuxt/ui/banner.ts +108 -0
- package/.nuxt/ui/blog-post.ts +142 -0
- package/.nuxt/ui/blog-posts.ts +9 -0
- package/.nuxt/ui/button.ts +1 -1
- package/.nuxt/ui/calendar.ts +221 -9
- package/.nuxt/ui/changelog-version.ts +41 -0
- package/.nuxt/ui/changelog-versions.ts +8 -0
- package/.nuxt/ui/chat-message.ts +136 -0
- package/.nuxt/ui/chat-messages.ts +14 -0
- package/.nuxt/ui/chat-palette.ts +8 -0
- package/.nuxt/ui/chat-prompt-submit.ts +5 -0
- package/.nuxt/ui/chat-prompt.ts +35 -0
- package/.nuxt/ui/checkbox-group.ts +4 -1
- package/.nuxt/ui/checkbox.ts +5 -4
- package/.nuxt/ui/color-picker.ts +2 -2
- package/.nuxt/ui/command-palette.ts +12 -2
- package/.nuxt/ui/content/content-navigation.ts +368 -0
- package/.nuxt/ui/content/content-search-button.ts +15 -0
- package/.nuxt/ui/content/content-search.ts +13 -0
- package/.nuxt/ui/content/content-surround.ts +34 -0
- package/.nuxt/ui/content/content-toc.ts +155 -0
- package/.nuxt/ui/context-menu.ts +3 -1
- package/.nuxt/ui/dashboard-group.ts +3 -0
- package/.nuxt/ui/dashboard-navbar.ts +21 -0
- package/.nuxt/ui/dashboard-panel.ts +17 -0
- package/.nuxt/ui/dashboard-resize-handle.ts +3 -0
- package/.nuxt/ui/dashboard-search-button.ts +15 -0
- package/.nuxt/ui/dashboard-search.ts +13 -0
- package/.nuxt/ui/dashboard-sidebar-collapse.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar-toggle.ts +9 -0
- package/.nuxt/ui/dashboard-sidebar.ts +37 -0
- package/.nuxt/ui/dashboard-toolbar.ts +7 -0
- package/.nuxt/ui/dropdown-menu.ts +3 -1
- package/.nuxt/ui/empty.ts +83 -0
- package/.nuxt/ui/error.ts +9 -0
- package/.nuxt/ui/footer-columns.ts +28 -0
- package/.nuxt/ui/footer.ts +11 -0
- package/.nuxt/ui/header.ts +25 -0
- package/.nuxt/ui/index.ts +57 -2
- package/.nuxt/ui/input-date.ts +343 -0
- package/.nuxt/ui/input-menu.ts +13 -3
- package/.nuxt/ui/input-number.ts +26 -15
- package/.nuxt/ui/input-tags.ts +1 -1
- package/.nuxt/ui/input-time.ts +342 -0
- package/.nuxt/ui/input.ts +1 -1
- package/.nuxt/ui/kbd.ts +1 -1
- package/.nuxt/ui/main.ts +3 -0
- package/.nuxt/ui/marquee.ts +66 -0
- package/.nuxt/ui/modal.ts +36 -5
- package/.nuxt/ui/navigation-menu.ts +2 -0
- package/.nuxt/ui/page-anchors.ts +30 -0
- package/.nuxt/ui/page-aside.ts +10 -0
- package/.nuxt/ui/page-body.ts +3 -0
- package/.nuxt/ui/page-card.ts +279 -0
- package/.nuxt/ui/page-columns.ts +3 -0
- package/.nuxt/ui/page-cta.ts +70 -0
- package/.nuxt/ui/page-feature.ts +26 -0
- package/.nuxt/ui/page-grid.ts +3 -0
- package/.nuxt/ui/page-header.ts +18 -0
- package/.nuxt/ui/page-hero.ts +44 -0
- package/.nuxt/ui/page-links.ts +25 -0
- package/.nuxt/ui/page-list.ts +8 -0
- package/.nuxt/ui/page-logos.ts +15 -0
- package/.nuxt/ui/page-section.ts +84 -0
- package/.nuxt/ui/page.ts +32 -0
- package/.nuxt/ui/pricing-plan.ts +101 -0
- package/.nuxt/ui/pricing-plans.ts +22 -0
- package/.nuxt/ui/pricing-table.ts +51 -0
- package/.nuxt/ui/prose/a.ts +6 -0
- package/.nuxt/ui/prose/accordion-item.ts +3 -0
- package/.nuxt/ui/prose/accordion.ts +6 -0
- package/.nuxt/ui/prose/badge.ts +3 -0
- package/.nuxt/ui/prose/blockquote.ts +3 -0
- package/.nuxt/ui/prose/callout.ts +129 -0
- package/.nuxt/ui/prose/card-group.ts +3 -0
- package/.nuxt/ui/prose/card.ts +119 -0
- package/.nuxt/ui/prose/code-collapse.ts +19 -0
- package/.nuxt/ui/prose/code-group.ts +13 -0
- package/.nuxt/ui/prose/code-icon.ts +66 -0
- package/.nuxt/ui/prose/code-preview.ts +14 -0
- package/.nuxt/ui/prose/code-tree.ts +28 -0
- package/.nuxt/ui/prose/code.ts +27 -0
- package/.nuxt/ui/prose/collapsible.ts +12 -0
- package/.nuxt/ui/prose/em.ts +3 -0
- package/.nuxt/ui/prose/field-group.ts +3 -0
- package/.nuxt/ui/prose/field.ts +11 -0
- package/.nuxt/ui/prose/h1.ts +6 -0
- package/.nuxt/ui/prose/h2.ts +14 -0
- package/.nuxt/ui/prose/h3.ts +14 -0
- package/.nuxt/ui/prose/h4.ts +6 -0
- package/.nuxt/ui/prose/hr.ts +3 -0
- package/.nuxt/ui/prose/icon.ts +3 -0
- package/.nuxt/ui/prose/img.ts +23 -0
- package/.nuxt/ui/prose/index.ts +41 -0
- package/.nuxt/ui/prose/kbd.ts +3 -0
- package/.nuxt/ui/prose/li.ts +3 -0
- package/.nuxt/ui/prose/ol.ts +3 -0
- package/.nuxt/ui/prose/p.ts +3 -0
- package/.nuxt/ui/prose/pre.ts +17 -0
- package/.nuxt/ui/prose/steps.ts +19 -0
- package/.nuxt/ui/prose/strong.ts +3 -0
- package/.nuxt/ui/prose/table.ts +6 -0
- package/.nuxt/ui/prose/tabs-item.ts +3 -0
- package/.nuxt/ui/prose/tabs.ts +5 -0
- package/.nuxt/ui/prose/tbody.ts +3 -0
- package/.nuxt/ui/prose/td.ts +3 -0
- package/.nuxt/ui/prose/th.ts +3 -0
- package/.nuxt/ui/prose/thead.ts +3 -0
- package/.nuxt/ui/prose/tr.ts +3 -0
- package/.nuxt/ui/prose/ul.ts +3 -0
- package/.nuxt/ui/radio-group.ts +5 -3
- package/.nuxt/ui/select-menu.ts +13 -3
- package/.nuxt/ui/select.ts +5 -3
- package/.nuxt/ui/switch.ts +4 -3
- package/.nuxt/ui/table.ts +8 -2
- package/.nuxt/ui/textarea.ts +1 -1
- package/.nuxt/ui/tree.ts +24 -10
- package/.nuxt/ui/user.ts +101 -0
- package/.nuxt/ui-image-component.ts +1 -1
- package/.nuxt/ui.css +6 -0
- package/.output/nitro.json +3 -3
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-4kZc4IwOXqryLeYzsaTvEKd54SPfeeGKPyDAZei18kw.woff +0 -0
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-RvZUU2X45U7WIDI083h9MozPZMSPdvOCkgsORsWvPOw.woff +0 -0
- package/.output/public/_fonts/1ZTlEDqU4DtwDJiND8f6qaugUpa0RIDvQl-v7iM6l54-mSqNnHyoMtDKNu3z_xDpL0hWMcL0lhabY3Oa0dnS5HM.woff +0 -0
- package/.output/public/_ignis-config.json +7 -1
- package/.output/public/_nuxt/-OUwOzoZ.js +1 -0
- package/.output/public/_nuxt/-z2jk33i.js +1 -0
- package/.output/public/_nuxt/3L5yAyVe.js +1 -0
- package/.output/public/_nuxt/8nlalpbc.js +1 -0
- package/.output/public/_nuxt/As5Zy5cG.js +1 -0
- package/.output/public/_nuxt/B-TDuiGE.js +1 -0
- package/.output/public/_nuxt/B04mZI32.js +1 -0
- package/.output/public/_nuxt/B3zmx-p1.js +1 -0
- package/.output/public/_nuxt/B4eQjLRH.js +1 -0
- package/.output/public/_nuxt/B6WOJ0Em.js +1 -0
- package/.output/public/_nuxt/BB2ULiwb.js +1 -0
- package/.output/public/_nuxt/BEvX3xjB.js +1 -0
- package/.output/public/_nuxt/BFcGh2xo.js +1 -0
- package/.output/public/_nuxt/BFdGKCUO.js +1 -0
- package/.output/public/_nuxt/BG-5V6Ik.js +1 -0
- package/.output/public/_nuxt/BeRTSVEP.js +1 -0
- package/.output/public/_nuxt/Bh-DZrTV.js +1 -0
- package/.output/public/_nuxt/BvFz8iHh.js +1 -0
- package/.output/public/_nuxt/BwUgVogm.js +1 -0
- package/.output/public/_nuxt/C1fHW8CN.js +1 -0
- package/.output/public/_nuxt/C1getMtX.js +49 -0
- package/.output/public/_nuxt/C4nGy0Yj.js +1 -0
- package/.output/public/_nuxt/CExm4AMI.js +1 -0
- package/.output/public/_nuxt/CHcd0nHy.js +1 -0
- package/.output/public/_nuxt/CTbEZMxa.js +1 -0
- package/.output/public/_nuxt/CZ5QNOH8.js +1 -0
- package/.output/public/_nuxt/Cna7T5zY.js +1 -0
- package/.output/public/_nuxt/CnghUxEk.js +1 -0
- package/.output/public/_nuxt/CvJSUdvI.js +1 -0
- package/.output/public/_nuxt/CwgBHvd_.js +1 -0
- package/.output/public/_nuxt/D1nIr4-J.js +1 -0
- package/.output/public/_nuxt/D2atCez-.js +1 -0
- package/.output/public/_nuxt/D3WX5Hmk.js +1 -0
- package/.output/public/_nuxt/D5duQQkG.js +1 -0
- package/.output/public/_nuxt/D9RSHNPZ.js +1 -0
- package/.output/public/_nuxt/DB3c8m3K.js +1 -0
- package/.output/public/_nuxt/DFP1sKjc.js +1 -0
- package/.output/public/_nuxt/DI5_qtj_.js +1 -0
- package/.output/public/_nuxt/DKCDh1Eq.js +1 -0
- package/.output/public/_nuxt/DN3AlbuD.js +1 -0
- package/.output/public/_nuxt/DPDbQA17.js +1 -0
- package/.output/public/_nuxt/DSErOj49.js +1 -0
- package/.output/public/_nuxt/DXrSmKSt.js +1 -0
- package/.output/public/_nuxt/DbZ1CQfQ.js +1 -0
- package/.output/public/_nuxt/DgCebJqk.js +1 -0
- package/.output/public/_nuxt/DhhwMwQM.js +1 -0
- package/.output/public/_nuxt/Djhwz52y.js +1 -0
- package/.output/public/_nuxt/DnE1KSqg.js +1 -0
- package/.output/public/_nuxt/DncFEy6i.js +1 -0
- package/.output/public/_nuxt/DpZCZGQO.js +1 -0
- package/.output/public/_nuxt/Dx95U2T3.js +1 -0
- package/.output/public/_nuxt/FUdAqSn9.js +9 -0
- package/.output/public/_nuxt/GvxWNFgu.js +1 -0
- package/.output/public/_nuxt/HgKyGH3C.js +1 -0
- package/.output/public/_nuxt/Hxhp1Hz0.js +1 -0
- package/.output/public/_nuxt/LpFrvoF7.js +1 -0
- package/.output/public/_nuxt/Pre.HegCCrfd.css +2 -0
- package/.output/public/_nuxt/Sz6HDPqh.js +1 -0
- package/.output/public/_nuxt/U1_7ggcx.js +1 -0
- package/.output/public/_nuxt/X8ZdEYzW.js +1 -0
- package/.output/public/_nuxt/ahq42_9S.js +1 -0
- package/.output/public/_nuxt/b0AtYQ73.js +1 -0
- package/.output/public/_nuxt/builds/latest.json +1 -1
- package/.output/public/_nuxt/builds/meta/78080714-55fa-441d-9998-a6fb0c7ee057.json +1 -0
- package/.output/public/_nuxt/efC_w6sP.js +1 -0
- package/.output/public/_nuxt/entry.9ygoOcLs.css +1 -0
- package/.output/public/_nuxt/error-404.0Tbhbu-E.css +1 -0
- package/.output/public/_nuxt/error-500.ClQbyW3Z.css +1 -0
- package/.output/public/_nuxt/ulE7jr93.js +1 -0
- package/.output/public/_nuxt/xHyrElgL.js +1 -0
- package/.output/server/chunks/_/error-500.mjs.map +1 -1
- package/.output/server/chunks/_/i18n.config.mjs.map +1 -1
- package/.output/server/chunks/_/nitro.mjs +1221 -1219
- package/.output/server/chunks/_/nitro.mjs.map +1 -1
- package/.output/server/chunks/build/client.precomputed.mjs +1 -1
- package/.output/server/chunks/build/client.precomputed.mjs.map +1 -1
- package/.output/server/chunks/build/database.compressed.mjs.map +1 -1
- package/.output/server/chunks/raw/headers.mjs.map +1 -1
- package/.output/server/chunks/routes/api/neonTest.mjs +2 -2
- package/.output/server/chunks/routes/api/neonTest.mjs.map +1 -1
- package/.output/server/chunks/routes/renderer.mjs +27 -2
- package/.output/server/chunks/routes/renderer.mjs.map +1 -1
- package/.output/server/chunks/virtual/_virtual_spa-template.mjs.map +1 -1
- package/.output/server/chunks/virtual/child-sources.mjs.map +1 -1
- package/.output/server/chunks/virtual/global-sources.mjs +0 -8
- package/.output/server/chunks/virtual/global-sources.mjs.map +1 -1
- package/.output/server/index.mjs +1 -1
- package/.output/server/index.mjs.map +1 -1
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/convertor/create.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data-patch.js +6 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/data.js +95 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/SyntaxError.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/generate.js +131 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/index.js +4 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/parse.js +584 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/tokenizer.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/definition-syntax/walk.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/create.js +98 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/sourceMap.js +92 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/generator/token-before.js +182 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/index.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/Lexer.js +453 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/error.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-an-plus-b.js +238 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-const.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic-urange.js +151 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/generic.js +598 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match-graph.js +456 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/match.js +630 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/prepare-tokens.js +50 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/search.js +61 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/structure.js +164 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/lexer/trace.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/SyntaxError.js +65 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/create.js +346 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/parser/sequence.js +43 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/font-face.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/import.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/index.js +13 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/media.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/page.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/atrule/supports.js +80 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/lexer.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/mix.js +138 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/parser.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/config/walker.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/create.js +53 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/expression.js +7 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/function/var.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/index.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AnPlusB.js +292 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Atrule.js +100 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AtrulePrelude.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/AttributeSelector.js +147 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Block.js +89 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Brackets.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDC.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/CDO.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/ClassSelector.js +24 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Combinator.js +54 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Comment.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Declaration.js +165 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/DeclarationList.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Dimension.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Function.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Hash.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/IdSelector.js +26 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Identifier.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaFeature.js +77 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQuery.js +60 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/MediaQueryList.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Nth.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Number.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Operator.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Parentheses.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Percentage.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoClassSelector.js +63 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/PseudoElementSelector.js +64 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Ratio.js +59 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Raw.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Rule.js +51 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Selector.js +32 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/SelectorList.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/String.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/StyleSheet.js +82 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/TypeSelector.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/UnicodeRange.js +156 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Url.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/Value.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/WhiteSpace.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index-parse.js +40 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/node/index.js +40 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/pseudo/index.js +48 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/atrulePrelude.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/default.js +85 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/index.js +3 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/selector.js +90 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/syntax/scope/value.js +25 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/OffsetToLocation.js +87 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/TokenStream.js +272 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/adopt-buffer.js +9 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/char-code-definitions.js +207 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/index.js +513 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/names.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/types.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/tokenizer/utils.js +254 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/List.js +469 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/clone.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/create-custom-error.js +14 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/ident.js +101 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/names.js +106 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/string.js +99 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/utils/url.js +108 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/version.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/lib/walker/create.js +287 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/convertor/create.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data-patch.js +6 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/data.js +118 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/SyntaxError.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/generate.js +135 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/index.js +4 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/parse.js +552 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/scanner.js +109 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/definition-syntax/walk.js +53 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/create.js +97 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/sourceMap.js +92 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/generator/token-before.js +182 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/index.js +30 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/Lexer.js +511 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/error.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-an-plus-b.js +238 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-const.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic-urange.js +151 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/generic.js +622 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match-graph.js +527 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/match.js +630 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/prepare-tokens.js +50 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/search.js +61 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/structure.js +169 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/trace.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/lexer/units.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/SyntaxError.js +70 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/create.js +350 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/parser/sequence.js +43 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/container.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/font-face.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/import.js +104 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/index.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/layer.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/media.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/nest.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/page.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/scope.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/starting-style.js +8 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/atrule/supports.js +12 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/lexer.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/mix.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/parser.js +45 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/config/walker.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/create.js +55 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/expression.js +7 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/function/var.js +39 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/index.js +10 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AnPlusB.js +292 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Atrule.js +100 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AtrulePrelude.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/AttributeSelector.js +147 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Block.js +95 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Brackets.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDC.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/CDO.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/ClassSelector.js +24 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Combinator.js +54 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Comment.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Condition.js +123 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Declaration.js +165 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/DeclarationList.js +62 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Dimension.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Feature.js +103 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureFunction.js +63 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/FeatureRange.js +133 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Function.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/GeneralEnclosed.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Hash.js +23 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/IdSelector.js +26 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Identifier.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Layer.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/LayerList.js +36 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQuery.js +102 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/MediaQueryList.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/NestingSelector.js +22 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Nth.js +47 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Number.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Operator.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Parentheses.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Percentage.js +18 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoClassSelector.js +65 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/PseudoElementSelector.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Ratio.js +68 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Raw.js +41 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Rule.js +51 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Scope.js +66 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Selector.js +31 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SelectorList.js +35 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/String.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/StyleSheet.js +82 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/SupportsDeclaration.js +34 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/TypeSelector.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/UnicodeRange.js +156 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Url.js +52 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/Value.js +19 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/WhiteSpace.js +27 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index-parse.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/node/index.js +49 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/index.js +56 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/pseudo/lang.js +33 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/atrulePrelude.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/default.js +85 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/index.js +3 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/selector.js +94 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/syntax/scope/value.js +25 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/OffsetToLocation.js +87 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/TokenStream.js +316 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/adopt-buffer.js +9 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/char-code-definitions.js +212 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/index.js +513 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/names.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/types.js +28 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/tokenizer/utils.js +254 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/List.js +469 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/clone.js +21 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/create-custom-error.js +14 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/ident.js +101 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/names.js +106 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/string.js +99 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/utils/url.js +108 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/version.js +5 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/lib/walker/create.js +287 -0
- package/.output/server/node_modules/.nitro/css-tree@3.1.0/package.json +125 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode.js +496 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/decode_codepoint.js +71 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/encode.js +69 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/escape.js +116 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-html.js +7 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/decode-data-xml.js +7 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/generated/encode-html.js +10 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/index.js +99 -0
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/esm/package.json +1 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode-codepoint.js +77 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/decode.js +568 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-html.js +7 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/generated/decode-data-xml.js +7 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/bin-trie-flags.js +21 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/internal/decode-shared.js +31 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/dist/commonjs/package.json +3 -0
- package/.output/server/node_modules/.nitro/entities@7.0.0/package.json +113 -0
- package/.output/server/node_modules/@fastify/accept-negotiator/package.json +42 -16
- package/.output/server/node_modules/@iconify/utils/lib/colors/index.js +292 -0
- package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.js +702 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/common.js +76 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/format.js +40 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/icon.js +52 -0
- package/.output/server/node_modules/@iconify/utils/lib/css/icons.js +133 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.js +20 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.js +15 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.js +31 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.js +80 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.js +102 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/data.js +29 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/format.js +60 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.js +50 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.js +204 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.js +35 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.js +134 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.js +167 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.js +81 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.js +94 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.js +78 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.js +68 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.js +47 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.js +105 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.js +38 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.js +94 -0
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.js +64 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.js +26 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/merge.js +18 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/name.js +58 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/square.js +34 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.js +13 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.js +126 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.js +21 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.js +38 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.js +93 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.js +48 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.js +24 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.js +44 -0
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.js +125 -0
- package/.output/server/node_modules/@iconify/utils/lib/index.js +53 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/custom.js +32 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/loader.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/modern.js +42 -0
- package/.output/server/node_modules/@iconify/utils/lib/loader/utils.js +63 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/objects.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/strings.js +27 -0
- package/.output/server/node_modules/@iconify/utils/lib/misc/title.js +10 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/build.js +115 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/defs.js +32 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.js +15 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/html.js +10 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/id.js +42 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.js +23 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/parse.js +69 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.js +55 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/size.js +28 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/trim.js +8 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/url.js +23 -0
- package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.js +9 -0
- package/.output/server/node_modules/@iconify/utils/package.json +88 -417
- package/.output/server/node_modules/@img/colour/color.cjs +1594 -0
- package/.output/server/node_modules/@img/colour/index.cjs +1 -0
- package/.output/server/node_modules/@img/colour/package.json +45 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/LICENSE +191 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-42.dll +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/libvips-cpp-8.17.3.dll +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/lib/sharp-win32-x64.node +0 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/package.json +39 -0
- package/.output/server/node_modules/@img/sharp-win32-x64/versions.json +30 -0
- package/.output/server/node_modules/@intlify/core/dist/core.mjs +1 -1
- package/.output/server/node_modules/@intlify/core/package.json +3 -3
- package/.output/server/node_modules/@intlify/core-base/dist/core-base.mjs +2 -2
- package/.output/server/node_modules/@intlify/core-base/package.json +4 -4
- package/.output/server/node_modules/@intlify/h3/dist/index.mjs +5 -1
- package/.output/server/node_modules/@intlify/h3/package.json +81 -48
- package/.output/server/node_modules/@intlify/message-compiler/dist/message-compiler.mjs +1 -1
- package/.output/server/node_modules/@intlify/message-compiler/package.json +2 -2
- package/.output/server/node_modules/@intlify/shared/dist/shared.mjs +1 -1
- package/.output/server/node_modules/@intlify/shared/package.json +1 -1
- package/.output/server/node_modules/@neondatabase/serverless/package.json +4 -4
- package/.output/server/node_modules/@poppinss/exception/build/index.js +36 -55
- package/.output/server/node_modules/@poppinss/exception/package.json +19 -16
- package/.output/server/node_modules/@poppinss/string/build/index.js +2 -6
- package/.output/server/node_modules/@poppinss/string/build/string-ArFSN0fl.js +464 -0
- package/.output/server/node_modules/@poppinss/string/package.json +28 -25
- package/.output/server/node_modules/@shikijs/core/dist/index.mjs +144 -41
- package/.output/server/node_modules/@shikijs/core/package.json +2 -2
- package/.output/server/node_modules/@shikijs/engine-javascript/package.json +3 -3
- package/.output/server/node_modules/@shikijs/engine-oniguruma/dist/index.mjs +3 -3
- package/.output/server/node_modules/@shikijs/engine-oniguruma/package.json +2 -2
- package/.output/server/node_modules/@shikijs/langs/dist/vue.mjs +1 -1
- package/.output/server/node_modules/@shikijs/langs/package.json +6 -3
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme-lighter.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme-palenight.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/dist/material-theme.mjs +2 -0
- package/.output/server/node_modules/@shikijs/themes/package.json +3 -3
- package/.output/server/node_modules/@shikijs/transformers/dist/index.mjs +64 -26
- package/.output/server/node_modules/@shikijs/transformers/package.json +3 -3
- package/.output/server/node_modules/@shikijs/types/package.json +1 -1
- package/.output/server/node_modules/@vue/compiler-core/dist/compiler-core.cjs.prod.js +128 -106
- package/.output/server/node_modules/@vue/compiler-core/package.json +5 -5
- package/.output/server/node_modules/@vue/compiler-dom/dist/compiler-dom.cjs.prod.js +54 -54
- package/.output/server/node_modules/@vue/compiler-dom/package.json +3 -3
- package/.output/server/node_modules/@vue/compiler-ssr/dist/compiler-ssr.cjs.js +35 -33
- package/.output/server/node_modules/@vue/compiler-ssr/package.json +3 -3
- package/.output/server/node_modules/@vue/reactivity/dist/reactivity.cjs.prod.js +64 -18
- package/.output/server/node_modules/@vue/reactivity/package.json +2 -2
- package/.output/server/node_modules/@vue/runtime-core/dist/runtime-core.cjs.prod.js +2048 -2010
- package/.output/server/node_modules/@vue/runtime-core/package.json +3 -3
- package/.output/server/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +58 -29
- package/.output/server/node_modules/@vue/runtime-dom/package.json +5 -5
- package/.output/server/node_modules/@vue/server-renderer/dist/server-renderer.cjs.prod.js +1 -1
- package/.output/server/node_modules/@vue/server-renderer/package.json +4 -4
- package/.output/server/node_modules/@vue/shared/dist/shared.cjs.prod.js +1 -1
- package/.output/server/node_modules/@vue/shared/package.json +1 -1
- package/.output/server/node_modules/css-select/lib/esm/attributes.js +222 -0
- package/.output/server/node_modules/css-select/lib/esm/compile.js +115 -0
- package/.output/server/node_modules/css-select/lib/esm/general.js +144 -0
- package/.output/server/node_modules/css-select/lib/esm/index.js +115 -0
- package/.output/server/node_modules/css-select/lib/esm/package.json +1 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/aliases.js +35 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/filters.js +143 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/index.js +40 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/pseudos.js +79 -0
- package/.output/server/node_modules/css-select/lib/esm/pseudo-selectors/subselects.js +94 -0
- package/.output/server/node_modules/css-select/lib/esm/sort.js +79 -0
- package/.output/server/node_modules/csso/lib/clean/Atrule.js +69 -0
- package/.output/server/node_modules/csso/lib/clean/Comment.js +3 -0
- package/.output/server/node_modules/csso/lib/clean/Declaration.js +14 -0
- package/.output/server/node_modules/csso/lib/clean/Raw.js +9 -0
- package/.output/server/node_modules/csso/lib/clean/Rule.js +100 -0
- package/.output/server/node_modules/csso/lib/clean/TypeSelector.js +19 -0
- package/.output/server/node_modules/csso/lib/clean/WhiteSpace.js +3 -0
- package/.output/server/node_modules/csso/lib/clean/index.js +28 -0
- package/.output/server/node_modules/csso/lib/clean/utils.js +7 -0
- package/.output/server/node_modules/csso/lib/compress.js +196 -0
- package/.output/server/node_modules/csso/lib/index.js +131 -0
- package/.output/server/node_modules/csso/lib/replace/Atrule.js +9 -0
- package/.output/server/node_modules/csso/lib/replace/AttributeSelector.js +28 -0
- package/.output/server/node_modules/csso/lib/replace/Dimension.js +63 -0
- package/.output/server/node_modules/csso/lib/replace/Number.js +40 -0
- package/.output/server/node_modules/csso/lib/replace/Percentage.js +37 -0
- package/.output/server/node_modules/csso/lib/replace/Url.js +4 -0
- package/.output/server/node_modules/csso/lib/replace/Value.js +26 -0
- package/.output/server/node_modules/csso/lib/replace/atrule/keyframes.js +21 -0
- package/.output/server/node_modules/csso/lib/replace/color.js +498 -0
- package/.output/server/node_modules/csso/lib/replace/index.js +32 -0
- package/.output/server/node_modules/csso/lib/replace/property/background.js +50 -0
- package/.output/server/node_modules/csso/lib/replace/property/border.js +16 -0
- package/.output/server/node_modules/csso/lib/replace/property/font-weight.js +22 -0
- package/.output/server/node_modules/csso/lib/replace/property/font.js +30 -0
- package/.output/server/node_modules/csso/lib/restructure/1-mergeAtrule.js +106 -0
- package/.output/server/node_modules/csso/lib/restructure/2-initialMergeRuleset.js +53 -0
- package/.output/server/node_modules/csso/lib/restructure/3-disjoinRuleset.js +42 -0
- package/.output/server/node_modules/csso/lib/restructure/4-restructShorthand.js +425 -0
- package/.output/server/node_modules/csso/lib/restructure/6-restructBlock.js +308 -0
- package/.output/server/node_modules/csso/lib/restructure/7-mergeRuleset.js +86 -0
- package/.output/server/node_modules/csso/lib/restructure/8-restructRuleset.js +176 -0
- package/.output/server/node_modules/csso/lib/restructure/index.js +35 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/createDeclarationIndexer.js +31 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/index.js +41 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/processSelector.js +97 -0
- package/.output/server/node_modules/csso/lib/restructure/prepare/specificity.js +131 -0
- package/.output/server/node_modules/csso/lib/restructure/utils.js +142 -0
- package/.output/server/node_modules/csso/lib/syntax.js +60 -0
- package/.output/server/node_modules/csso/lib/usage.js +71 -0
- package/.output/server/node_modules/csso/lib/utils.js +2 -0
- package/.output/server/node_modules/csso/lib/version.js +5 -0
- package/.output/server/node_modules/devalue/index.js +1 -0
- package/.output/server/node_modules/devalue/package.json +1 -1
- package/.output/server/node_modules/devalue/src/parse.js +5 -1
- package/.output/server/node_modules/devalue/src/stringify.js +10 -6
- package/.output/server/node_modules/devalue/src/uneval.js +10 -6
- package/.output/server/node_modules/devalue/src/utils.js +5 -1
- package/.output/server/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
- package/.output/server/node_modules/dom-serializer/lib/esm/index.js +190 -0
- package/.output/server/node_modules/dom-serializer/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domelementtype/lib/esm/index.js +51 -0
- package/.output/server/node_modules/domelementtype/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domhandler/lib/esm/index.js +146 -0
- package/.output/server/node_modules/domhandler/lib/esm/node.js +338 -0
- package/.output/server/node_modules/domhandler/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domutils/lib/esm/feeds.js +183 -0
- package/.output/server/node_modules/domutils/lib/esm/helpers.js +136 -0
- package/.output/server/node_modules/domutils/lib/esm/index.js +10 -0
- package/.output/server/node_modules/domutils/lib/esm/legacy.js +152 -0
- package/.output/server/node_modules/domutils/lib/esm/manipulation.js +134 -0
- package/.output/server/node_modules/domutils/lib/esm/package.json +1 -0
- package/.output/server/node_modules/domutils/lib/esm/querying.js +142 -0
- package/.output/server/node_modules/domutils/lib/esm/stringify.js +81 -0
- package/.output/server/node_modules/domutils/lib/esm/traversal.js +112 -0
- package/.output/server/node_modules/fast-xml-parser/package.json +4 -2
- package/.output/server/node_modules/fast-xml-parser/src/xmlparser/OrderedObjParser.js +40 -18
- package/.output/server/node_modules/hast-util-to-parse5/lib/index.js +13 -19
- package/.output/server/node_modules/hast-util-to-parse5/package.json +8 -7
- package/.output/server/node_modules/ipx/dist/index.mjs +1 -1
- package/.output/server/node_modules/ipx/dist/shared/ipx.CXJeaylD.mjs +764 -0
- package/.output/server/node_modules/ipx/package.json +29 -30
- package/.output/server/node_modules/jose/dist/webapi/index.js +4 -2
- package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/decrypt.js +12 -12
- package/.output/server/node_modules/jose/dist/webapi/jwe/flattened/encrypt.js +17 -13
- package/.output/server/node_modules/jose/dist/webapi/jwe/general/decrypt.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwe/general/encrypt.js +16 -16
- package/.output/server/node_modules/jose/dist/webapi/jwk/embedded.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwk/thumbprint.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/jwks/local.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/jwks/remote.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/jws/flattened/sign.js +23 -17
- package/.output/server/node_modules/jose/dist/webapi/jws/flattened/verify.js +13 -9
- package/.output/server/node_modules/jose/dist/webapi/jws/general/verify.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/key/export.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/key/generate_key_pair.js +3 -3
- package/.output/server/node_modules/jose/dist/webapi/key/import.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/aesgcmkw.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/asn1.js +3 -7
- package/.output/server/node_modules/jose/dist/webapi/lib/buffer_utils.js +11 -0
- package/.output/server/node_modules/jose/dist/webapi/lib/cek.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_cek_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_iv_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_key_length.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/check_key_type.js +15 -19
- package/.output/server/node_modules/jose/dist/webapi/lib/crypto_key.js +2 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/decrypt.js +7 -7
- package/.output/server/node_modules/jose/dist/webapi/lib/decrypt_key_management.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/digest.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/ecdhes.js +5 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/encrypt.js +8 -8
- package/.output/server/node_modules/jose/dist/webapi/lib/encrypt_key_management.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/get_sign_verify_key.js +3 -3
- package/.output/server/node_modules/jose/dist/webapi/lib/invalid_key_input.js +2 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/is_disjoint.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/is_jwk.js +6 -14
- package/.output/server/node_modules/jose/dist/webapi/lib/is_key_like.js +11 -8
- package/.output/server/node_modules/jose/dist/webapi/lib/is_object.js +3 -5
- package/.output/server/node_modules/jose/dist/webapi/lib/iv.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/jwk_to_key.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/jwt_claims_set.js +59 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/key_to_jwk.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/normalize_key.js +4 -4
- package/.output/server/node_modules/jose/dist/webapi/lib/pbes2kw.js +5 -3
- package/.output/server/node_modules/jose/dist/webapi/lib/rsaes.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/sign.js +6 -6
- package/.output/server/node_modules/jose/dist/webapi/lib/subtle_dsa.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/validate_algorithms.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/validate_crit.js +2 -2
- package/.output/server/node_modules/jose/dist/webapi/lib/verify.js +6 -6
- package/.output/server/node_modules/jose/dist/webapi/util/base64url.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/util/decode_jwt.js +1 -1
- package/.output/server/node_modules/jose/dist/webapi/util/decode_protected_header.js +1 -1
- package/.output/server/node_modules/jose/package.json +1 -1
- package/.output/server/node_modules/mdast-util-to-hast/lib/footer.js +2 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/break.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/code.js +8 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/delete.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/heading.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/html.js +4 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +3 -5
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/image.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/index.js +5 -1
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +3 -5
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/link.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/list.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/root.js +3 -7
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/strong.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/table.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/text.js +3 -4
- package/.output/server/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +3 -6
- package/.output/server/node_modules/mdast-util-to-hast/lib/index.js +3 -3
- package/.output/server/node_modules/mdast-util-to-hast/lib/revert.js +3 -9
- package/.output/server/node_modules/mdast-util-to-hast/lib/state.js +19 -16
- package/.output/server/node_modules/mdast-util-to-hast/package.json +2 -1
- package/.output/server/node_modules/node-mock-http/package.json +10 -10
- package/.output/server/node_modules/nth-check/lib/esm/compile.js +113 -0
- package/.output/server/node_modules/nth-check/lib/esm/index.js +63 -0
- package/.output/server/node_modules/nth-check/lib/esm/package.json +1 -0
- package/.output/server/node_modules/nth-check/lib/esm/parse.js +73 -0
- package/.output/server/node_modules/oauth4webapi/build/index.js +41 -30
- package/.output/server/node_modules/oauth4webapi/package.json +14 -15
- package/.output/server/node_modules/ofetch/dist/node.mjs +3 -3
- package/.output/server/node_modules/ofetch/dist/shared/ofetch.CWycOUEr.mjs +349 -0
- package/.output/server/node_modules/ofetch/package.json +19 -19
- package/.output/server/node_modules/oniguruma-to-es/dist/esm/index.js +4 -4
- package/.output/server/node_modules/oniguruma-to-es/package.json +4 -4
- package/.output/server/node_modules/pathe/dist/index.mjs +19 -1
- package/.output/server/node_modules/pathe/dist/shared/pathe.M-eThtNZ.mjs +249 -0
- package/.output/server/node_modules/pathe/package.json +33 -20
- package/.output/server/node_modules/regex/package.json +6 -6
- package/.output/server/node_modules/regex/src/atomic.js +6 -3
- package/.output/server/node_modules/sax/lib/sax.js +1697 -0
- package/.output/server/node_modules/sax/package.json +28 -0
- package/.output/server/node_modules/semver/classes/comparator.js +143 -0
- package/.output/server/node_modules/semver/classes/range.js +557 -0
- package/.output/server/node_modules/semver/functions/cmp.js +54 -0
- package/.output/server/node_modules/semver/functions/eq.js +5 -0
- package/.output/server/node_modules/semver/functions/gt.js +5 -0
- package/.output/server/node_modules/semver/functions/lt.js +5 -0
- package/.output/server/node_modules/semver/functions/lte.js +5 -0
- package/.output/server/node_modules/semver/functions/neq.js +5 -0
- package/.output/server/node_modules/semver/functions/satisfies.js +12 -0
- package/.output/server/node_modules/semver/internal/lrucache.js +42 -0
- package/.output/server/node_modules/sharp/lib/channel.js +10 -7
- package/.output/server/node_modules/sharp/lib/colour.js +42 -31
- package/.output/server/node_modules/sharp/lib/composite.js +12 -10
- package/.output/server/node_modules/sharp/lib/constructor.js +92 -32
- package/.output/server/node_modules/sharp/lib/index.js +4 -4
- package/.output/server/node_modules/sharp/lib/input.js +252 -74
- package/.output/server/node_modules/sharp/lib/is.js +45 -57
- package/.output/server/node_modules/sharp/lib/libvips.js +133 -66
- package/.output/server/node_modules/sharp/lib/operation.js +158 -61
- package/.output/server/node_modules/sharp/lib/output.js +350 -97
- package/.output/server/node_modules/sharp/lib/resize.js +73 -60
- package/.output/server/node_modules/sharp/lib/sharp.js +110 -27
- package/.output/server/node_modules/sharp/lib/utility.js +47 -43
- package/.output/server/node_modules/sharp/package.json +74 -76
- package/.output/server/node_modules/shiki/package.json +9 -9
- package/.output/server/node_modules/strnum/package.json +1 -1
- package/.output/server/node_modules/strnum/strnum.js +1 -1
- package/.output/server/node_modules/svgo/lib/builtin.js +116 -56
- package/.output/server/node_modules/svgo/lib/parser.js +40 -94
- package/.output/server/node_modules/svgo/lib/path.js +45 -63
- package/.output/server/node_modules/svgo/lib/stringifier.js +116 -113
- package/.output/server/node_modules/svgo/lib/style.js +51 -63
- package/.output/server/node_modules/svgo/lib/svgo/css-select-adapter.js +82 -59
- package/.output/server/node_modules/svgo/lib/svgo/plugins.js +21 -11
- package/.output/server/node_modules/svgo/lib/svgo/tools.js +39 -43
- package/.output/server/node_modules/svgo/lib/svgo-node.js +44 -31
- package/.output/server/node_modules/svgo/lib/svgo.js +55 -14
- package/.output/server/node_modules/svgo/lib/types.js +1 -0
- package/.output/server/node_modules/svgo/lib/util/map-nodes-to-parents.js +29 -0
- package/.output/server/node_modules/svgo/lib/util/visit.js +36 -0
- package/.output/server/node_modules/svgo/lib/version.js +7 -0
- package/.output/server/node_modules/svgo/lib/xast.js +32 -66
- package/.output/server/node_modules/svgo/package.json +68 -35
- package/.output/server/node_modules/svgo/plugins/_collections.js +150 -34
- package/.output/server/node_modules/svgo/plugins/_path.js +206 -173
- package/.output/server/node_modules/svgo/plugins/_transforms.js +470 -125
- package/.output/server/node_modules/svgo/plugins/addAttributesToSVGElement.js +13 -9
- package/.output/server/node_modules/svgo/plugins/addClassesToSVGElement.js +16 -8
- package/.output/server/node_modules/svgo/plugins/applyTransforms.js +26 -38
- package/.output/server/node_modules/svgo/plugins/cleanupAttrs.js +11 -7
- package/.output/server/node_modules/svgo/plugins/cleanupEnableBackground.js +12 -13
- package/.output/server/node_modules/svgo/plugins/cleanupIds.js +25 -24
- package/.output/server/node_modules/svgo/plugins/cleanupListOfValues.js +19 -16
- package/.output/server/node_modules/svgo/plugins/cleanupNumericValues.js +19 -18
- package/.output/server/node_modules/svgo/plugins/collapseGroups.js +30 -31
- package/.output/server/node_modules/svgo/plugins/convertColors.js +51 -17
- package/.output/server/node_modules/svgo/plugins/convertEllipseToCircle.js +4 -6
- package/.output/server/node_modules/svgo/plugins/convertOneStopGradients.js +13 -24
- package/.output/server/node_modules/svgo/plugins/convertPathData.js +323 -261
- package/.output/server/node_modules/svgo/plugins/convertShapeToPath.js +22 -29
- package/.output/server/node_modules/svgo/plugins/convertStyleToAttrs.js +26 -17
- package/.output/server/node_modules/svgo/plugins/convertTransform.js +62 -171
- package/.output/server/node_modules/svgo/plugins/inlineStyles.js +33 -30
- package/.output/server/node_modules/svgo/plugins/mergePaths.js +36 -15
- package/.output/server/node_modules/svgo/plugins/mergeStyles.js +9 -26
- package/.output/server/node_modules/svgo/plugins/minifyStyles.js +30 -16
- package/.output/server/node_modules/svgo/plugins/moveElemsAttrsToGroup.js +13 -12
- package/.output/server/node_modules/svgo/plugins/moveGroupAttrsToElems.js +8 -9
- package/.output/server/node_modules/svgo/plugins/prefixIds.js +26 -21
- package/.output/server/node_modules/svgo/plugins/preset-default.js +37 -42
- package/.output/server/node_modules/svgo/plugins/removeAttributesBySelector.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeAttrs.js +13 -11
- package/.output/server/node_modules/svgo/plugins/removeComments.js +9 -6
- package/.output/server/node_modules/svgo/plugins/removeDeprecatedAttrs.js +120 -0
- package/.output/server/node_modules/svgo/plugins/removeDesc.js +13 -10
- package/.output/server/node_modules/svgo/plugins/removeDimensions.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeDoctype.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeEditorsNSData.js +12 -10
- package/.output/server/node_modules/svgo/plugins/removeElementsByAttr.js +10 -6
- package/.output/server/node_modules/svgo/plugins/removeEmptyAttrs.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeEmptyContainers.js +21 -13
- package/.output/server/node_modules/svgo/plugins/removeEmptyText.js +11 -6
- package/.output/server/node_modules/svgo/plugins/removeHiddenElems.js +56 -37
- package/.output/server/node_modules/svgo/plugins/removeMetadata.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeNonInheritableGroupAttrs.js +8 -10
- package/.output/server/node_modules/svgo/plugins/removeOffCanvasPaths.js +14 -21
- package/.output/server/node_modules/svgo/plugins/removeRasterImages.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeScripts.js +63 -0
- package/.output/server/node_modules/svgo/plugins/removeStyleElement.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeTitle.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeUnknownsAndDefaults.js +32 -30
- package/.output/server/node_modules/svgo/plugins/removeUnusedNS.js +5 -9
- package/.output/server/node_modules/svgo/plugins/removeUselessDefs.js +14 -29
- package/.output/server/node_modules/svgo/plugins/removeUselessStrokeAndFill.js +17 -11
- package/.output/server/node_modules/svgo/plugins/removeViewBox.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeXMLNS.js +4 -6
- package/.output/server/node_modules/svgo/plugins/removeXMLProcInst.js +5 -7
- package/.output/server/node_modules/svgo/plugins/removeXlink.js +15 -14
- package/.output/server/node_modules/svgo/plugins/reusePaths.js +9 -29
- package/.output/server/node_modules/svgo/plugins/sortAttrs.js +15 -10
- package/.output/server/node_modules/svgo/plugins/sortDefsChildren.js +8 -11
- package/.output/server/node_modules/unhead/dist/plugins.mjs +2 -2
- package/.output/server/node_modules/unhead/dist/server.mjs +3 -3
- package/.output/server/node_modules/unhead/dist/shared/unhead.CGCfDSEL.mjs +180 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.CYpwL2hc.mjs +194 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.CbpEuj3y.mjs +71 -0
- package/.output/server/node_modules/unhead/dist/shared/unhead.ckV6dpEQ.mjs +166 -0
- package/.output/server/node_modules/unhead/dist/utils.mjs +2 -2
- package/.output/server/node_modules/unhead/package.json +1 -1
- package/.output/server/node_modules/vue/dist/vue.cjs.js +1 -1
- package/.output/server/node_modules/vue/dist/vue.cjs.prod.js +1 -1
- package/.output/server/node_modules/vue/package.json +6 -6
- package/.output/server/node_modules/vue-router/dist/devtools-EWN81iOl.mjs +1220 -0
- package/.output/server/node_modules/vue-router/dist/vue-router.mjs +3 -3
- package/.output/server/node_modules/vue-router/package.json +2 -3
- package/.output/server/node_modules/yaml/dist/compose/compose-collection.js +1 -1
- package/.output/server/node_modules/yaml/dist/compose/resolve-block-seq.js +1 -1
- package/.output/server/node_modules/yaml/dist/compose/resolve-flow-collection.js +2 -2
- package/.output/server/node_modules/yaml/dist/errors.js +1 -1
- package/.output/server/node_modules/yaml/dist/nodes/Alias.js +1 -1
- package/.output/server/node_modules/yaml/dist/parse/parser.js +2 -2
- package/.output/server/node_modules/yaml/dist/stringify/stringifyNumber.js +1 -1
- package/.output/server/node_modules/yaml/dist/stringify/stringifyPair.js +1 -1
- package/.output/server/node_modules/yaml/package.json +4 -4
- package/.output/server/package.json +50 -62
- package/app/components/ignis/IgnisContentFeatures.vue +1 -0
- package/bin/set-app-vue.js +1 -1
- package/bin/set-css.js +1 -1
- package/bin/set-eslint.js +1 -1
- package/bin/setup.js +3 -3
- package/eslint.config.mjs +7 -4
- package/features.ts +13 -0
- package/i18n/locales/en.json +1 -0
- package/nuxt.config.ts +5 -13
- package/package.json +14 -12
- package/public/_ignis-config.json +7 -1
- package/test/config/social.txt +37 -0
- package/test/config.test.ts +9 -0
- package/test/features/enable-all.txt +1 -1
- package/test/features/social.txt +4 -0
- package/test/features.test.ts +10 -0
- package/vitest.config.ts +1 -3
- package/.nuxt/cache/fonts/EP1810cmAtyahQPDHB6nvBzRkIG5RcNv4u5vTy1aYHU-Ih_Po7WkbhDymI0Y_ntmpz__bZJprHiu7_c5N_X6AAA.woff2 +0 -0
- package/.nuxt/cache/fonts/JNWOTRocaYj0gq52vW_s7sHAdSMUetrRmhhggCVxyZ0-TnR4PP30hI5UWldZ0knUBrHkvIoiDWYXwn2v1NtCh80.woff2 +0 -0
- package/.nuxt/cache/fonts/XbAtjIvy1UErjg9eu_v7X3zPLS_AwsmqVsR9fG-JB6o-H99o9_8BZXq7ey5UyS99Wn9zX0V0anvpXEqAqavcJlQ.woff2 +0 -0
- package/.nuxt/cache/fonts/ZLm6CLvwhQbamZ73M80jbqz7DuOkHlT_HRyXHG7YfVs-eYLoSJPWhqR5CE0c8XPABls8kE_7Fc7F2x7Gtfsg_8M.woff2 +0 -0
- package/.nuxt/cache/fonts/aPa9az0DeE4U5rqM-Ov0Vl_obQis_d6sScLNygGkvxw-s32Y9TxBLZRr_ebRHQ3l3q1g2j_0tPT879PPSBGrj8A.woff2 +0 -0
- package/.nuxt/cache/fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-55rzD39AWoqYSkQOLHuoKZUDVcDSlXRKdaymIN2dXes.woff +0 -0
- package/.output/public/_fonts/Jtqhy44WKYEjGWTSusP5YJfJv7Wf74QqgkBOI9u_77s-Rl_Bht5SvmaotE20bkavBEAJEEGEa0hcz3d_8yOeXmw.woff +0 -0
- package/.output/public/_fonts/ZHaz3DhCHNWhsElqYfuM71rfBBDgjuU2sd34vaYJwQg-71NZaZSGjxzAGjCMnCc2zS5rS_EGA0xHKPGCggWuXik.woff +0 -0
- package/.output/public/_fonts/kgyHMsxRmhh06xcV0yKMKdTKQBsQpXGi7erqwaqgjXg-BgCmQXkW3N6talUbQSKexB2sHUT0qGEzmM4uMcnDAbI.woff +0 -0
- package/.output/public/_nuxt/1vOq3xiE.js +0 -1
- package/.output/public/_nuxt/22rhGZdI.js +0 -1
- package/.output/public/_nuxt/9eIdSibD.js +0 -1
- package/.output/public/_nuxt/BBmTy930.js +0 -35
- package/.output/public/_nuxt/BKe83Cjx.js +0 -1
- package/.output/public/_nuxt/Bc5GLloR.js +0 -1
- package/.output/public/_nuxt/BdG3SY-u.js +0 -1
- package/.output/public/_nuxt/BeyOQpYA.js +0 -1
- package/.output/public/_nuxt/BqcXd3MY.js +0 -94
- package/.output/public/_nuxt/Bz55A4y1.js +0 -1
- package/.output/public/_nuxt/C2ybsIQ4.js +0 -1
- package/.output/public/_nuxt/C4U5VOMJ.js +0 -1
- package/.output/public/_nuxt/CAJsyjAK.js +0 -1
- package/.output/public/_nuxt/CD9aBAuy.js +0 -1
- package/.output/public/_nuxt/CHOS7x_d.js +0 -1
- package/.output/public/_nuxt/CXhUbdF6.js +0 -1
- package/.output/public/_nuxt/CZWScI5k.js +0 -1
- package/.output/public/_nuxt/DHd34syF.js +0 -1
- package/.output/public/_nuxt/DMbgtwAJ.js +0 -1
- package/.output/public/_nuxt/DR8jhnFO.js +0 -1
- package/.output/public/_nuxt/DTT0LBLY.js +0 -1
- package/.output/public/_nuxt/DWV_uL6G.js +0 -6764
- package/.output/public/_nuxt/DdpTKqR-.js +0 -1
- package/.output/public/_nuxt/Df_NcBcC.js +0 -1
- package/.output/public/_nuxt/DhqOMFXQ.js +0 -1
- package/.output/public/_nuxt/Dnp9eFDR.js +0 -1
- package/.output/public/_nuxt/DnqMs_6O.js +0 -1
- package/.output/public/_nuxt/Dq7g_IfY.js +0 -1
- package/.output/public/_nuxt/DsAJWnuW.js +0 -1
- package/.output/public/_nuxt/DvVg7vM_.js +0 -1
- package/.output/public/_nuxt/DwKqLVGx.js +0 -1
- package/.output/public/_nuxt/DxzqnQKF.js +0 -1
- package/.output/public/_nuxt/ProsePre.D5orA6B_.css +0 -1
- package/.output/public/_nuxt/Y0f1tU-r.js +0 -1
- package/.output/public/_nuxt/atySmcu6.js +0 -1
- package/.output/public/_nuxt/builds/meta/7bab2b8f-93ee-4f44-a604-8cd2b41eac60.json +0 -1
- package/.output/public/_nuxt/entry.CtpkPzPO.css +0 -1
- package/.output/public/_nuxt/error-404.DzDu4Ean.css +0 -1
- package/.output/public/_nuxt/error-500.BdNqqJx7.css +0 -1
- package/.output/public/_nuxt/q3i45eMH.js +0 -1
- package/.output/public/_nuxt/vueform.CkWb7x1C.css +0 -1
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/data.cjs +0 -97
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/Lexer.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/index.cjs +0 -17
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/mix.cjs +0 -142
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/create.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Block.cjs +0 -90
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/DeclarationList.cjs +0 -50
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index-parse.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/node/index.cjs +0 -85
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/pseudo/index.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/selector.cjs +0 -84
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.2.1/data/patch.json +0 -739
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/convertor/create.cjs +0 -32
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data-patch.cjs +0 -7
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/data.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/SyntaxError.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/generate.cjs +0 -135
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/index.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/parse.cjs +0 -588
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/tokenizer.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/definition-syntax/walk.cjs +0 -56
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/create.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/sourceMap.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/generator/token-before.cjs +0 -170
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/index.cjs +0 -63
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/Lexer.cjs +0 -470
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/error.cjs +0 -128
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-an-plus-b.cjs +0 -235
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-const.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic-urange.cjs +0 -149
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/generic.cjs +0 -573
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match-graph.cjs +0 -459
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/match.cjs +0 -632
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/prepare-tokens.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/search.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/structure.cjs +0 -168
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/trace.cjs +0 -73
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/lexer/units.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/SyntaxError.cjs +0 -69
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/create.cjs +0 -336
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/parser/sequence.cjs +0 -47
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/font-face.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/import.cjs +0 -37
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/index.cjs +0 -19
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/media.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/nest.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/page.cjs +0 -16
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/atrule/supports.cjs +0 -77
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/lexer.cjs +0 -12
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/mix.cjs +0 -119
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/parser.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/config/walker.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/create.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/expression.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/function/var.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/index.cjs +0 -14
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AnPlusB.cjs +0 -293
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Atrule.cjs +0 -103
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AtrulePrelude.cjs +0 -52
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/AttributeSelector.cjs +0 -148
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Block.cjs +0 -96
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Brackets.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDC.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/CDO.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/ClassSelector.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Combinator.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Comment.cjs +0 -40
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Declaration.cjs +0 -166
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/DeclarationList.cjs +0 -62
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Dimension.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Function.cjs +0 -45
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Hash.cjs +0 -30
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/IdSelector.cjs +0 -33
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Identifier.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaFeature.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQuery.cjs +0 -61
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/MediaQueryList.cjs +0 -41
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/NestingSelector.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Nth.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Number.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Operator.cjs +0 -28
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Parentheses.cjs +0 -38
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Percentage.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoClassSelector.cjs +0 -65
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/PseudoElementSelector.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Ratio.cjs +0 -67
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Raw.cjs +0 -48
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Rule.cjs +0 -58
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Selector.cjs +0 -39
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/SelectorList.cjs +0 -43
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/String.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/StyleSheet.cjs +0 -83
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/TypeSelector.cjs +0 -59
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/UnicodeRange.cjs +0 -158
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Url.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/Value.cjs +0 -26
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/WhiteSpace.cjs +0 -34
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index-parse.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/node/index.cjs +0 -87
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/pseudo/index.cjs +0 -54
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/atrulePrelude.cjs +0 -9
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/default.cjs +0 -76
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/index.cjs +0 -11
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/selector.cjs +0 -88
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/syntax/scope/value.cjs +0 -29
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/OffsetToLocation.cjs +0 -91
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/TokenStream.cjs +0 -264
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/adopt-buffer.cjs +0 -13
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/char-code-definitions.cjs +0 -231
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/index.cjs +0 -554
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/names.cjs +0 -31
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/types.cjs +0 -57
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/tokenizer/utils.cjs +0 -261
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/List.cjs +0 -473
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/clone.cjs +0 -25
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/create-custom-error.cjs +0 -18
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/ident.cjs +0 -102
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/names.cjs +0 -113
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/string.cjs +0 -99
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/utils/url.cjs +0 -108
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/version.cjs +0 -5
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/cjs/walker/create.cjs +0 -291
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/data/patch.json +0 -725
- package/.output/server/node_modules/.nitro/css-tree@2.3.1/package.json +0 -126
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode.js +0 -536
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/decode_codepoint.js +0 -76
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/encode.js +0 -77
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/escape.js +0 -122
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-html.js +0 -9
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/decode-data-xml.js +0 -9
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/generated/encode-html.js +0 -12
- package/.output/server/node_modules/.nitro/entities@4.5.0/lib/index.js +0 -126
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/at-rules.json +0 -620
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/properties.json +0 -9297
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/css/syntaxes.json +0 -794
- package/.output/server/node_modules/.nitro/mdn-data@2.0.28/package.json +0 -38
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/at-rules.json +0 -620
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/properties.json +0 -9626
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/css/syntaxes.json +0 -866
- package/.output/server/node_modules/.nitro/mdn-data@2.0.30/package.json +0 -38
- package/.output/server/node_modules/.nitro/property-information@6.5.0/index.js +0 -18
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/aria.js +0 -59
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/find.js +0 -68
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/hast-to-react.js +0 -28
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/html.js +0 -322
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/normalize.js +0 -7
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/svg.js +0 -567
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-insensitive-transform.js +0 -10
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/case-sensitive-transform.js +0 -8
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/create.js +0 -58
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/defined-info.js +0 -44
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/info.js +0 -25
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/merge.js +0 -26
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/util/schema.js +0 -28
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xlink.js +0 -17
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xml.js +0 -9
- package/.output/server/node_modules/.nitro/property-information@6.5.0/lib/xmlns.js +0 -9
- package/.output/server/node_modules/.nitro/property-information@6.5.0/package.json +0 -93
- package/.output/server/node_modules/.nitro/property-information@7.1.0/lib/util/types.js +0 -13
- package/.output/server/node_modules/@iconify/utils/lib/colors/index.mjs +0 -350
- package/.output/server/node_modules/@iconify/utils/lib/colors/keywords.mjs +0 -188
- package/.output/server/node_modules/@iconify/utils/lib/css/common.mjs +0 -90
- package/.output/server/node_modules/@iconify/utils/lib/css/format.mjs +0 -38
- package/.output/server/node_modules/@iconify/utils/lib/css/icon.mjs +0 -76
- package/.output/server/node_modules/@iconify/utils/lib/css/icons.mjs +0 -168
- package/.output/server/node_modules/@iconify/utils/lib/customisations/bool.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/customisations/defaults.mjs +0 -14
- package/.output/server/node_modules/@iconify/utils/lib/customisations/flip.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/customisations/merge.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/customisations/rotate.mjs +0 -33
- package/.output/server/node_modules/@iconify/utils/lib/emoji/cleanup.mjs +0 -51
- package/.output/server/node_modules/@iconify/utils/lib/emoji/convert.mjs +0 -84
- package/.output/server/node_modules/@iconify/utils/lib/emoji/data.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/emoji/format.mjs +0 -44
- package/.output/server/node_modules/@iconify/utils/lib/emoji/parse.mjs +0 -58
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/base.mjs +0 -231
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/create.mjs +0 -31
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/numbers.mjs +0 -164
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/similar.mjs +0 -216
- package/.output/server/node_modules/@iconify/utils/lib/emoji/regex/tree.mjs +0 -113
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/find.mjs +0 -104
- package/.output/server/node_modules/@iconify/utils/lib/emoji/replace/replace.mjs +0 -34
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/components.mjs +0 -75
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/missing.mjs +0 -97
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/name.mjs +0 -54
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/parse.mjs +0 -97
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/similar.mjs +0 -45
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/tree.mjs +0 -105
- package/.output/server/node_modules/@iconify/utils/lib/emoji/test/variations.mjs +0 -54
- package/.output/server/node_modules/@iconify/utils/lib/icon/defaults.mjs +0 -24
- package/.output/server/node_modules/@iconify/utils/lib/icon/merge.mjs +0 -20
- package/.output/server/node_modules/@iconify/utils/lib/icon/name.mjs +0 -53
- package/.output/server/node_modules/@iconify/utils/lib/icon/square.mjs +0 -23
- package/.output/server/node_modules/@iconify/utils/lib/icon/transformations.mjs +0 -16
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/convert-info.mjs +0 -182
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/expand.mjs +0 -22
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icon.mjs +0 -28
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/get-icons.mjs +0 -46
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/minify.mjs +0 -66
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/parse.mjs +0 -51
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/tree.mjs +0 -23
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate-basic.mjs +0 -62
- package/.output/server/node_modules/@iconify/utils/lib/icon-set/validate.mjs +0 -161
- package/.output/server/node_modules/@iconify/utils/lib/index.mjs +0 -64
- package/.output/server/node_modules/@iconify/utils/lib/loader/custom.mjs +0 -50
- package/.output/server/node_modules/@iconify/utils/lib/loader/loader.mjs +0 -59
- package/.output/server/node_modules/@iconify/utils/lib/loader/modern.mjs +0 -80
- package/.output/server/node_modules/@iconify/utils/lib/loader/utils.mjs +0 -92
- package/.output/server/node_modules/@iconify/utils/lib/misc/objects.mjs +0 -30
- package/.output/server/node_modules/@iconify/utils/lib/misc/strings.mjs +0 -17
- package/.output/server/node_modules/@iconify/utils/lib/misc/title.mjs +0 -5
- package/.output/server/node_modules/@iconify/utils/lib/svg/build.mjs +0 -119
- package/.output/server/node_modules/@iconify/utils/lib/svg/defs.mjs +0 -30
- package/.output/server/node_modules/@iconify/utils/lib/svg/encode-svg-for-css.mjs +0 -20
- package/.output/server/node_modules/@iconify/utils/lib/svg/html.mjs +0 -9
- package/.output/server/node_modules/@iconify/utils/lib/svg/id.mjs +0 -28
- package/.output/server/node_modules/@iconify/utils/lib/svg/inner-html.mjs +0 -19
- package/.output/server/node_modules/@iconify/utils/lib/svg/parse.mjs +0 -83
- package/.output/server/node_modules/@iconify/utils/lib/svg/pretty.mjs +0 -70
- package/.output/server/node_modules/@iconify/utils/lib/svg/size.mjs +0 -40
- package/.output/server/node_modules/@iconify/utils/lib/svg/trim.mjs +0 -5
- package/.output/server/node_modules/@iconify/utils/lib/svg/url.mjs +0 -11
- package/.output/server/node_modules/@iconify/utils/lib/svg/viewbox.mjs +0 -8
- package/.output/server/node_modules/@lukeed/ms/dist/index.mjs +0 -34
- package/.output/server/node_modules/@lukeed/ms/package.json +0 -48
- package/.output/server/node_modules/@poppinss/string/build/chunk-LJJE2S3U.js +0 -407
- package/.output/server/node_modules/@shikijs/themes/dist/github-dark.mjs +0 -2
- package/.output/server/node_modules/@shikijs/themes/dist/github-light.mjs +0 -2
- package/.output/server/node_modules/@trysound/sax/lib/sax.js +0 -1413
- package/.output/server/node_modules/@trysound/sax/package.json +0 -30
- package/.output/server/node_modules/bytes/index.js +0 -170
- package/.output/server/node_modules/bytes/package.json +0 -42
- package/.output/server/node_modules/color/index.js +0 -496
- package/.output/server/node_modules/color/package.json +0 -47
- package/.output/server/node_modules/color-convert/conversions.js +0 -839
- package/.output/server/node_modules/color-convert/index.js +0 -81
- package/.output/server/node_modules/color-convert/package.json +0 -48
- package/.output/server/node_modules/color-convert/route.js +0 -97
- package/.output/server/node_modules/color-name/index.js +0 -152
- package/.output/server/node_modules/color-name/package.json +0 -28
- package/.output/server/node_modules/color-string/index.js +0 -242
- package/.output/server/node_modules/color-string/package.json +0 -39
- package/.output/server/node_modules/css-select/lib/attributes.js +0 -236
- package/.output/server/node_modules/css-select/lib/compile.js +0 -151
- package/.output/server/node_modules/css-select/lib/general.js +0 -148
- package/.output/server/node_modules/css-select/lib/index.js +0 -154
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/aliases.js +0 -34
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/filters.js +0 -157
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/index.js +0 -46
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/pseudos.js +0 -93
- package/.output/server/node_modules/css-select/lib/pseudo-selectors/subselects.js +0 -112
- package/.output/server/node_modules/css-select/lib/sort.js +0 -84
- package/.output/server/node_modules/csso/cjs/clean/Atrule.cjs +0 -73
- package/.output/server/node_modules/csso/cjs/clean/Comment.cjs +0 -7
- package/.output/server/node_modules/csso/cjs/clean/Declaration.cjs +0 -18
- package/.output/server/node_modules/csso/cjs/clean/Raw.cjs +0 -13
- package/.output/server/node_modules/csso/cjs/clean/Rule.cjs +0 -104
- package/.output/server/node_modules/csso/cjs/clean/TypeSelector.cjs +0 -23
- package/.output/server/node_modules/csso/cjs/clean/WhiteSpace.cjs +0 -7
- package/.output/server/node_modules/csso/cjs/clean/index.cjs +0 -32
- package/.output/server/node_modules/csso/cjs/clean/utils.cjs +0 -12
- package/.output/server/node_modules/csso/cjs/compress.cjs +0 -200
- package/.output/server/node_modules/csso/cjs/index.cjs +0 -127
- package/.output/server/node_modules/csso/cjs/replace/Atrule.cjs +0 -13
- package/.output/server/node_modules/csso/cjs/replace/AttributeSelector.cjs +0 -32
- package/.output/server/node_modules/csso/cjs/replace/Dimension.cjs +0 -67
- package/.output/server/node_modules/csso/cjs/replace/Number.cjs +0 -45
- package/.output/server/node_modules/csso/cjs/replace/Percentage.cjs +0 -41
- package/.output/server/node_modules/csso/cjs/replace/Url.cjs +0 -8
- package/.output/server/node_modules/csso/cjs/replace/Value.cjs +0 -29
- package/.output/server/node_modules/csso/cjs/replace/atrule/keyframes.cjs +0 -25
- package/.output/server/node_modules/csso/cjs/replace/color.cjs +0 -504
- package/.output/server/node_modules/csso/cjs/replace/index.cjs +0 -36
- package/.output/server/node_modules/csso/cjs/replace/property/background.cjs +0 -54
- package/.output/server/node_modules/csso/cjs/replace/property/border.cjs +0 -20
- package/.output/server/node_modules/csso/cjs/replace/property/font-weight.cjs +0 -26
- package/.output/server/node_modules/csso/cjs/replace/property/font.cjs +0 -34
- package/.output/server/node_modules/csso/cjs/restructure/1-mergeAtrule.cjs +0 -109
- package/.output/server/node_modules/csso/cjs/restructure/2-initialMergeRuleset.cjs +0 -51
- package/.output/server/node_modules/csso/cjs/restructure/3-disjoinRuleset.cjs +0 -46
- package/.output/server/node_modules/csso/cjs/restructure/4-restructShorthand.cjs +0 -429
- package/.output/server/node_modules/csso/cjs/restructure/6-restructBlock.cjs +0 -307
- package/.output/server/node_modules/csso/cjs/restructure/7-mergeRuleset.cjs +0 -90
- package/.output/server/node_modules/csso/cjs/restructure/8-restructRuleset.cjs +0 -175
- package/.output/server/node_modules/csso/cjs/restructure/index.cjs +0 -39
- package/.output/server/node_modules/csso/cjs/restructure/prepare/createDeclarationIndexer.cjs +0 -34
- package/.output/server/node_modules/csso/cjs/restructure/prepare/index.cjs +0 -45
- package/.output/server/node_modules/csso/cjs/restructure/prepare/processSelector.cjs +0 -101
- package/.output/server/node_modules/csso/cjs/restructure/prepare/specificity.cjs +0 -133
- package/.output/server/node_modules/csso/cjs/restructure/utils.cjs +0 -151
- package/.output/server/node_modules/csso/cjs/syntax.cjs +0 -60
- package/.output/server/node_modules/csso/cjs/usage.cjs +0 -75
- package/.output/server/node_modules/csso/cjs/utils.cjs +0 -14
- package/.output/server/node_modules/csso/cjs/version.cjs +0 -5
- package/.output/server/node_modules/debug/package.json +0 -64
- package/.output/server/node_modules/debug/src/browser.js +0 -272
- package/.output/server/node_modules/debug/src/common.js +0 -292
- package/.output/server/node_modules/debug/src/index.js +0 -10
- package/.output/server/node_modules/debug/src/node.js +0 -263
- package/.output/server/node_modules/dom-serializer/lib/foreignNames.js +0 -103
- package/.output/server/node_modules/dom-serializer/lib/index.js +0 -229
- package/.output/server/node_modules/domelementtype/lib/index.js +0 -55
- package/.output/server/node_modules/domhandler/lib/index.js +0 -165
- package/.output/server/node_modules/domhandler/lib/node.js +0 -474
- package/.output/server/node_modules/domutils/lib/feeds.js +0 -190
- package/.output/server/node_modules/domutils/lib/helpers.js +0 -142
- package/.output/server/node_modules/domutils/lib/index.js +0 -33
- package/.output/server/node_modules/domutils/lib/legacy.js +0 -168
- package/.output/server/node_modules/domutils/lib/manipulation.js +0 -142
- package/.output/server/node_modules/domutils/lib/querying.js +0 -155
- package/.output/server/node_modules/domutils/lib/stringify.js +0 -91
- package/.output/server/node_modules/domutils/lib/traversal.js +0 -125
- package/.output/server/node_modules/has-flag/index.js +0 -8
- package/.output/server/node_modules/has-flag/package.json +0 -46
- package/.output/server/node_modules/ipx/dist/shared/ipx.e4d5b25d.mjs +0 -761
- package/.output/server/node_modules/is-arrayish/index.js +0 -9
- package/.output/server/node_modules/is-arrayish/package.json +0 -45
- package/.output/server/node_modules/jose/dist/webapi/lib/epoch.js +0 -1
- package/.output/server/node_modules/jose/dist/webapi/lib/secs.js +0 -55
- package/.output/server/node_modules/ms/index.js +0 -162
- package/.output/server/node_modules/ms/package.json +0 -38
- package/.output/server/node_modules/nth-check/lib/compile.js +0 -121
- package/.output/server/node_modules/nth-check/lib/index.js +0 -70
- package/.output/server/node_modules/nth-check/lib/parse.js +0 -77
- package/.output/server/node_modules/ofetch/dist/shared/ofetch.03887fc3.mjs +0 -333
- package/.output/server/node_modules/pathe/dist/shared/pathe.ff20891b.mjs +0 -221
- package/.output/server/node_modules/sharp/build/Release/libglib-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libgobject-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libvips-42.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/libvips-cpp.dll +0 -0
- package/.output/server/node_modules/sharp/build/Release/sharp-win32-x64.node +0 -0
- package/.output/server/node_modules/sharp/lib/platform.js +0 -30
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/THIRD-PARTY-NOTICES.md +0 -43
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/harfbuzz/hb-cplusplus.hh +0 -223
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/include/vips/vips8 +0 -60
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libglib-2.0.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0-0.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libgobject-2.0.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips-42.dll +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/lib/libvips.lib +0 -0
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/platform.json +0 -1
- package/.output/server/node_modules/sharp/vendor/8.14.5/win32-x64/versions.json +0 -31
- package/.output/server/node_modules/simple-swizzle/index.js +0 -29
- package/.output/server/node_modules/simple-swizzle/package.json +0 -36
- package/.output/server/node_modules/supports-color/index.js +0 -135
- package/.output/server/node_modules/supports-color/package.json +0 -53
- package/.output/server/node_modules/svgo/plugins/removeScriptElement.js +0 -70
- package/.output/server/node_modules/truncatise/index.js +0 -188
- package/.output/server/node_modules/truncatise/package.json +0 -36
- package/.output/server/node_modules/unhead/dist/shared/unhead.BpRRHAhY.mjs +0 -194
- package/.output/server/node_modules/unhead/dist/shared/unhead.DH45uomy.mjs +0 -180
- package/.output/server/node_modules/unhead/dist/shared/unhead.DZbvapt-.mjs +0 -70
- package/.output/server/node_modules/unhead/dist/shared/unhead.Djo8ep_Y.mjs +0 -166
- package/.output/server/node_modules/vue-router/dist/devtools-BLCumUwL.mjs +0 -1218
- /package/.nuxt/ui/{button-group.ts → field-group.ts} +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/index.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/aria.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/find.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/hast-to-react.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/html.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/normalize.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/svg.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-insensitive-transform.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/case-sensitive-transform.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/create.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/defined-info.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/info.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/merge.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/util/schema.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@6.5.0 → property-information}/lib/util/types.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xlink.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xml.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/lib/xmlns.js +0 -0
- /package/.output/server/node_modules/{.nitro/property-information@7.1.0 → property-information}/package.json +0 -0
package/.nuxt/dev/index.mjs
CHANGED
|
@@ -3,52 +3,53 @@ import { Server } from 'node:http';
|
|
|
3
3
|
import { resolve as resolve$1, dirname, join } from 'node:path';
|
|
4
4
|
import crypto$1 from 'node:crypto';
|
|
5
5
|
import { parentPort, threadId } from 'node:worker_threads';
|
|
6
|
-
import { defineEventHandler, handleCacheHeaders, splitCookiesString, createEvent, fetchWithEvent, isEvent, eventHandler, setHeaders, sendRedirect, proxyRequest, getRequestHeader, setResponseHeaders, setResponseStatus, send, getRequestHeaders, setResponseHeader, appendResponseHeader, getRequestURL, getResponseHeader, setCookie, getResponseStatus, createError, useSession,
|
|
7
|
-
import { escapeHtml } from 'file://C:/Git/nuxt-ignis/
|
|
8
|
-
import { createRenderer, getRequestDependencies, getPreloadLinks, getPrefetchLinks } from 'file://C:/Git/nuxt-ignis/
|
|
9
|
-
import destr, { destr as destr$1 } from 'file://C:/Git/nuxt-ignis/
|
|
10
|
-
import
|
|
11
|
-
import {
|
|
12
|
-
import
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
import {
|
|
6
|
+
import { defineEventHandler, handleCacheHeaders, splitCookiesString, createEvent, fetchWithEvent, isEvent, eventHandler, setHeaders, sendRedirect, proxyRequest, getRequestHeader, setResponseHeaders, setResponseStatus, send, getRequestHeaders, setResponseHeader, appendResponseHeader, getRequestURL, getResponseHeader, setCookie, getResponseStatus, createError, useSession, getRequestProtocol, getRequestHost, getQuery as getQuery$1, removeResponseHeader, readBody, handleCors, getRequestIP, readMultipartFormData, setHeader, getHeader, getRouterParam, lazyEventHandler, useBase, createApp, createRouter as createRouter$1, toNodeListener, getResponseStatusText } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/h3@1.15.4/node_modules/h3/dist/index.mjs';
|
|
7
|
+
import { escapeHtml } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/@vue+shared@3.5.26/node_modules/@vue/shared/dist/shared.cjs.js';
|
|
8
|
+
import { createRenderer, getRequestDependencies, getPreloadLinks, getPrefetchLinks } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/vue-bundle-renderer@2.2.0/node_modules/vue-bundle-renderer/dist/runtime.mjs';
|
|
9
|
+
import destr, { destr as destr$1 } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/destr@2.0.5/node_modules/destr/dist/index.mjs';
|
|
10
|
+
import process$1 from 'node:process';
|
|
11
|
+
import { renderToString } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/vue@3.5.26_typescript@5.9.3/node_modules/vue/server-renderer/index.mjs';
|
|
12
|
+
import { klona } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/klona@2.0.6/node_modules/klona/dist/index.mjs';
|
|
13
|
+
import defu, { defuFn, defu as defu$1, createDefu } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/defu@6.1.4/node_modules/defu/dist/defu.mjs';
|
|
14
|
+
import { snakeCase } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/scule@1.3.0/node_modules/scule/dist/index.mjs';
|
|
15
|
+
import { createHead as createHead$1, propsToString, renderSSRHead } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unhead@2.1.1/node_modules/unhead/dist/server.mjs';
|
|
16
|
+
import { stringify, uneval } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/devalue@5.6.1/node_modules/devalue/index.js';
|
|
17
|
+
import { toValue, isVNode, isRef } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/vue@3.5.26_typescript@5.9.3/node_modules/vue/index.mjs';
|
|
18
|
+
import { createHooks } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/hookable@5.5.3/node_modules/hookable/dist/index.mjs';
|
|
19
|
+
import { createFetch, Headers as Headers$1 } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/ofetch@1.5.1/node_modules/ofetch/dist/node.mjs';
|
|
20
|
+
import { fetchNodeRequestHandler, callNodeRequestHandler } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/node-mock-http@1.0.4/node_modules/node-mock-http/dist/index.mjs';
|
|
21
|
+
import { createStorage, prefixStorage } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unstorage@1.17.3_db0@0.3.4__4da4c62faaa9109d20cb0ff1df827498/node_modules/unstorage/dist/index.mjs';
|
|
22
|
+
import unstorage_47drivers_47fs from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unstorage@1.17.3_db0@0.3.4__4da4c62faaa9109d20cb0ff1df827498/node_modules/unstorage/drivers/fs.mjs';
|
|
23
|
+
import unstorage_47drivers_47lru_45cache from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unstorage@1.17.3_db0@0.3.4__4da4c62faaa9109d20cb0ff1df827498/node_modules/unstorage/drivers/lru-cache.mjs';
|
|
24
|
+
import { digest, hash as hash$1 } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/ohash@2.0.11/node_modules/ohash/dist/index.mjs';
|
|
25
|
+
import { toRouteMatcher, createRouter } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/radix3@1.1.2/node_modules/radix3/dist/index.mjs';
|
|
25
26
|
import { readFile } from 'node:fs/promises';
|
|
26
|
-
import consola, { createConsola, consola as consola$1 } from 'file://C:/Git/nuxt-ignis/
|
|
27
|
-
import { ErrorParser } from 'file://C:/Git/nuxt-ignis/
|
|
28
|
-
import { Youch } from 'file://C:/Git/nuxt-ignis/
|
|
29
|
-
import { SourceMapConsumer } from 'file://C:/Git/nuxt-ignis/
|
|
30
|
-
import devalue from 'file://C:/Git/nuxt-ignis/
|
|
31
|
-
import { createPathIndexLanguageParser, parseAcceptLanguage } from 'file://C:/Git/nuxt-ignis/
|
|
32
|
-
import { parse } from 'file://C:/Git/nuxt-ignis/
|
|
33
|
-
import { createRouterMatcher } from 'file://C:/Git/nuxt-ignis/
|
|
27
|
+
import consola, { createConsola, consola as consola$1 } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/consola@3.4.2/node_modules/consola/dist/index.mjs';
|
|
28
|
+
import { ErrorParser } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/youch-core@0.3.3/node_modules/youch-core/build/index.js';
|
|
29
|
+
import { Youch } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/youch@4.1.0-beta.13/node_modules/youch/build/index.js';
|
|
30
|
+
import { SourceMapConsumer } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/source-map@0.7.6/node_modules/source-map/source-map.js';
|
|
31
|
+
import devalue from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/@nuxt+devalue@2.0.2/node_modules/@nuxt/devalue/dist/devalue.mjs';
|
|
32
|
+
import { createPathIndexLanguageParser, parseAcceptLanguage } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/@intlify+utils@0.13.0/node_modules/@intlify/utils/dist/index.mjs';
|
|
33
|
+
import { parse } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/cookie-es@2.0.0/node_modules/cookie-es/dist/index.mjs';
|
|
34
|
+
import { createRouterMatcher } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/vue-router@4.6.4_vue@3.5.26_typescript@5.9.3_/node_modules/vue-router/vue-router.node.mjs';
|
|
34
35
|
import { AsyncLocalStorage } from 'node:async_hooks';
|
|
35
|
-
import { getContext } from 'file://C:/Git/nuxt-ignis/
|
|
36
|
-
import { captureRawStackTrace, parseRawStackTrace } from 'file://C:/Git/nuxt-ignis/
|
|
36
|
+
import { getContext } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unctx@2.5.0/node_modules/unctx/dist/index.mjs';
|
|
37
|
+
import { captureRawStackTrace, parseRawStackTrace } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/errx@0.1.0/node_modules/errx/dist/index.js';
|
|
37
38
|
import fs, { promises } from 'node:fs';
|
|
38
39
|
import { fileURLToPath } from 'node:url';
|
|
39
|
-
import { dirname as dirname$1, resolve as resolve$2 } from 'file://C:/Git/nuxt-ignis/
|
|
40
|
-
import { walkResolver } from 'file://C:/Git/nuxt-ignis/
|
|
41
|
-
import { FilterXSS } from 'file://C:/Git/nuxt-ignis/
|
|
42
|
-
import { basename, resolve as resolve$3, isAbsolute } from 'file://C:/Git/nuxt-ignis/
|
|
43
|
-
import { getIcons } from 'file://C:/Git/nuxt-ignis/
|
|
40
|
+
import { dirname as dirname$1, resolve as resolve$2 } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/pathe@1.1.2/node_modules/pathe/dist/index.mjs';
|
|
41
|
+
import { walkResolver } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/unhead@2.1.1/node_modules/unhead/dist/utils.mjs';
|
|
42
|
+
import { FilterXSS } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/xss@1.0.15/node_modules/xss/lib/index.js';
|
|
43
|
+
import { basename, resolve as resolve$3, isAbsolute } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/pathe@2.0.3/node_modules/pathe/dist/index.mjs';
|
|
44
|
+
import { getIcons } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/@iconify+utils@3.1.0/node_modules/@iconify/utils/lib/index.js';
|
|
44
45
|
import { collections } from 'file://C:/Git/nuxt-ignis/core/.nuxt/nuxt-icon-server-bundle.mjs';
|
|
45
|
-
import { neon } from 'file://C:/Git/nuxt-ignis/
|
|
46
|
-
import SqlString from 'file://C:/Git/nuxt-ignis/
|
|
47
|
-
import Fuse from 'file://C:/Git/nuxt-ignis/
|
|
48
|
-
import { diffLines } from 'file://C:/Git/nuxt-ignis/
|
|
49
|
-
import MagicString from 'file://C:/Git/nuxt-ignis/
|
|
50
|
-
import localAdapter from 'file://C:/Git/nuxt-ignis/
|
|
51
|
-
import { ipxFSStorage, ipxHttpStorage, createIPX, createIPXH3Handler } from 'file://C:/Git/nuxt-ignis/
|
|
46
|
+
import { neon } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/@neondatabase+serverless@1.0.1/node_modules/@neondatabase/serverless/index.mjs';
|
|
47
|
+
import SqlString from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/sqlstring@2.3.3/node_modules/sqlstring/index.js';
|
|
48
|
+
import Fuse from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/fuse.js@7.1.0/node_modules/fuse.js/dist/fuse.mjs';
|
|
49
|
+
import { diffLines } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/diff@8.0.2/node_modules/diff/libesm/index.js';
|
|
50
|
+
import MagicString from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/magic-string@0.30.21/node_modules/magic-string/dist/magic-string.es.mjs';
|
|
51
|
+
import localAdapter from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/db0@0.3.4_better-sqlite3@12.2.0/node_modules/db0/dist/connectors/better-sqlite3.mjs';
|
|
52
|
+
import { ipxFSStorage, ipxHttpStorage, createIPX, createIPXH3Handler } from 'file://C:/Git/nuxt-ignis/node_modules/.pnpm/ipx@3.1.1_db0@0.3.4_better-sqlite3@12.2.0__ioredis@5.8.2/node_modules/ipx/dist/index.mjs';
|
|
52
53
|
|
|
53
54
|
const HASH_RE = /#/g;
|
|
54
55
|
const AMPERSAND_RE = /&/g;
|
|
@@ -263,9 +264,6 @@ function joinRelativeURL(..._input) {
|
|
|
263
264
|
function withHttps(input) {
|
|
264
265
|
return withProtocol(input, "https://");
|
|
265
266
|
}
|
|
266
|
-
function withoutProtocol(input) {
|
|
267
|
-
return withProtocol(input, "");
|
|
268
|
-
}
|
|
269
267
|
function withProtocol(input, protocol) {
|
|
270
268
|
let match = input.match(PROTOCOL_REGEX);
|
|
271
269
|
if (!match) {
|
|
@@ -885,8 +883,11 @@ const inlineAppConfig = {
|
|
|
885
883
|
"neutral": "slate"
|
|
886
884
|
},
|
|
887
885
|
"icons": {
|
|
886
|
+
"arrowDown": "i-lucide-arrow-down",
|
|
888
887
|
"arrowLeft": "i-lucide-arrow-left",
|
|
889
888
|
"arrowRight": "i-lucide-arrow-right",
|
|
889
|
+
"arrowUp": "i-lucide-arrow-up",
|
|
890
|
+
"caution": "i-lucide-circle-alert",
|
|
890
891
|
"check": "i-lucide-check",
|
|
891
892
|
"chevronDoubleLeft": "i-lucide-chevrons-left",
|
|
892
893
|
"chevronDoubleRight": "i-lucide-chevrons-right",
|
|
@@ -895,16 +896,37 @@ const inlineAppConfig = {
|
|
|
895
896
|
"chevronRight": "i-lucide-chevron-right",
|
|
896
897
|
"chevronUp": "i-lucide-chevron-up",
|
|
897
898
|
"close": "i-lucide-x",
|
|
899
|
+
"copy": "i-lucide-copy",
|
|
900
|
+
"copyCheck": "i-lucide-copy-check",
|
|
901
|
+
"dark": "i-lucide-moon",
|
|
898
902
|
"ellipsis": "i-lucide-ellipsis",
|
|
903
|
+
"error": "i-lucide-circle-x",
|
|
899
904
|
"external": "i-lucide-arrow-up-right",
|
|
905
|
+
"eye": "i-lucide-eye",
|
|
906
|
+
"eyeOff": "i-lucide-eye-off",
|
|
900
907
|
"file": "i-lucide-file",
|
|
901
908
|
"folder": "i-lucide-folder",
|
|
902
909
|
"folderOpen": "i-lucide-folder-open",
|
|
910
|
+
"hash": "i-lucide-hash",
|
|
911
|
+
"info": "i-lucide-info",
|
|
912
|
+
"light": "i-lucide-sun",
|
|
903
913
|
"loading": "i-lucide-loader-circle",
|
|
914
|
+
"menu": "i-lucide-menu",
|
|
904
915
|
"minus": "i-lucide-minus",
|
|
916
|
+
"panelClose": "i-lucide-panel-left-close",
|
|
917
|
+
"panelOpen": "i-lucide-panel-left-open",
|
|
905
918
|
"plus": "i-lucide-plus",
|
|
919
|
+
"reload": "i-lucide-rotate-ccw",
|
|
906
920
|
"search": "i-lucide-search",
|
|
907
|
-
"
|
|
921
|
+
"stop": "i-lucide-square",
|
|
922
|
+
"success": "i-lucide-circle-check",
|
|
923
|
+
"system": "i-lucide-monitor",
|
|
924
|
+
"tip": "i-lucide-lightbulb",
|
|
925
|
+
"upload": "i-lucide-upload",
|
|
926
|
+
"warning": "i-lucide-triangle-alert"
|
|
927
|
+
},
|
|
928
|
+
"tv": {
|
|
929
|
+
"twMergeConfig": {}
|
|
908
930
|
}
|
|
909
931
|
},
|
|
910
932
|
"icon": {
|
|
@@ -1283,6 +1305,10 @@ const _inlineRuntimeConfig = {
|
|
|
1283
1305
|
},
|
|
1284
1306
|
"regexp": false,
|
|
1285
1307
|
"charts": false,
|
|
1308
|
+
"social": {
|
|
1309
|
+
"enabled": false,
|
|
1310
|
+
"url": ""
|
|
1311
|
+
},
|
|
1286
1312
|
"warn": {
|
|
1287
1313
|
"duplicates": true
|
|
1288
1314
|
}
|
|
@@ -1304,7 +1330,31 @@ const _inlineRuntimeConfig = {
|
|
|
1304
1330
|
"mdc": {
|
|
1305
1331
|
"components": {
|
|
1306
1332
|
"prose": true,
|
|
1307
|
-
"map": {
|
|
1333
|
+
"map": {
|
|
1334
|
+
"accordion": "ProseAccordion",
|
|
1335
|
+
"accordion-item": "ProseAccordionItem",
|
|
1336
|
+
"badge": "ProseBadge",
|
|
1337
|
+
"callout": "ProseCallout",
|
|
1338
|
+
"card": "ProseCard",
|
|
1339
|
+
"card-group": "ProseCardGroup",
|
|
1340
|
+
"caution": "ProseCaution",
|
|
1341
|
+
"code-collapse": "ProseCodeCollapse",
|
|
1342
|
+
"code-group": "ProseCodeGroup",
|
|
1343
|
+
"code-icon": "ProseCodeIcon",
|
|
1344
|
+
"code-preview": "ProseCodePreview",
|
|
1345
|
+
"code-tree": "ProseCodeTree",
|
|
1346
|
+
"collapsible": "ProseCollapsible",
|
|
1347
|
+
"field": "ProseField",
|
|
1348
|
+
"field-group": "ProseFieldGroup",
|
|
1349
|
+
"icon": "ProseIcon",
|
|
1350
|
+
"kbd": "ProseKbd",
|
|
1351
|
+
"note": "ProseNote",
|
|
1352
|
+
"steps": "ProseSteps",
|
|
1353
|
+
"tabs": "ProseTabs",
|
|
1354
|
+
"tabs-item": "ProseTabsItem",
|
|
1355
|
+
"tip": "ProseTip",
|
|
1356
|
+
"warning": "ProseWarning"
|
|
1357
|
+
}
|
|
1308
1358
|
},
|
|
1309
1359
|
"headings": {
|
|
1310
1360
|
"anchorLinks": {
|
|
@@ -1321,10 +1371,12 @@ const _inlineRuntimeConfig = {
|
|
|
1321
1371
|
"loadStrategy": "server-first"
|
|
1322
1372
|
},
|
|
1323
1373
|
"nuxt-link-checker": {
|
|
1324
|
-
"version": "4.3.
|
|
1374
|
+
"version": "4.3.9",
|
|
1325
1375
|
"hasSitemapModule": true,
|
|
1326
1376
|
"rootDir": "C:/Git/nuxt-ignis/core",
|
|
1327
|
-
"excludeLinks": [
|
|
1377
|
+
"excludeLinks": [
|
|
1378
|
+
{}
|
|
1379
|
+
],
|
|
1328
1380
|
"skipInspections": [],
|
|
1329
1381
|
"fetchTimeout": 10000,
|
|
1330
1382
|
"showLiveInspections": false,
|
|
@@ -1852,7 +1904,7 @@ const _inlineRuntimeConfig = {
|
|
|
1852
1904
|
}
|
|
1853
1905
|
],
|
|
1854
1906
|
"credits": true,
|
|
1855
|
-
"version": "7.
|
|
1907
|
+
"version": "7.5.0",
|
|
1856
1908
|
"sitemaps": {
|
|
1857
1909
|
"sitemap.xml": {
|
|
1858
1910
|
"sitemapName": "sitemap.xml",
|
|
@@ -1883,12 +1935,12 @@ const _inlineRuntimeConfig = {
|
|
|
1883
1935
|
"description": "A ready-to-use setup for your next application in Nuxt"
|
|
1884
1936
|
}
|
|
1885
1937
|
],
|
|
1886
|
-
"version": "3.2.
|
|
1938
|
+
"version": "3.2.14",
|
|
1887
1939
|
"debug": false,
|
|
1888
1940
|
"multiTenancy": []
|
|
1889
1941
|
},
|
|
1890
1942
|
"nuxt-robots": {
|
|
1891
|
-
"version": "5.
|
|
1943
|
+
"version": "5.6.7",
|
|
1892
1944
|
"isNuxtContentV2": false,
|
|
1893
1945
|
"debug": false,
|
|
1894
1946
|
"credits": true,
|
|
@@ -1902,6 +1954,7 @@ const _inlineRuntimeConfig = {
|
|
|
1902
1954
|
],
|
|
1903
1955
|
"allow": [],
|
|
1904
1956
|
"contentUsage": [],
|
|
1957
|
+
"contentSignal": [],
|
|
1905
1958
|
"_indexable": true,
|
|
1906
1959
|
"_rules": [],
|
|
1907
1960
|
"_normalized": true
|
|
@@ -1922,7 +1975,7 @@ const _inlineRuntimeConfig = {
|
|
|
1922
1975
|
"fs": {
|
|
1923
1976
|
"dir": [
|
|
1924
1977
|
"C:/Git/nuxt-ignis/core/public",
|
|
1925
|
-
"C:/Git/nuxt-ignis/
|
|
1978
|
+
"C:/Git/nuxt-ignis/node_modules/.pnpm/nuxt-spec@0.1.14_@parcel+wa_c2eaaf0da782f8d628b3259f05d38111/node_modules/nuxt-spec/public"
|
|
1926
1979
|
]
|
|
1927
1980
|
},
|
|
1928
1981
|
"http": {
|
|
@@ -2245,6 +2298,7 @@ const errorCSS = (
|
|
|
2245
2298
|
top: 0;
|
|
2246
2299
|
width: 100vw;
|
|
2247
2300
|
height: 100vh;
|
|
2301
|
+
border: none;
|
|
2248
2302
|
z-index: var(--z-base);
|
|
2249
2303
|
}
|
|
2250
2304
|
#frame[inert] {
|
|
@@ -2306,7 +2360,7 @@ const errorCSS = (
|
|
|
2306
2360
|
}
|
|
2307
2361
|
`
|
|
2308
2362
|
);
|
|
2309
|
-
function webComponentScript(base64HTML) {
|
|
2363
|
+
function webComponentScript(base64HTML, startMinimized) {
|
|
2310
2364
|
return (
|
|
2311
2365
|
/* js */
|
|
2312
2366
|
`
|
|
@@ -2400,6 +2454,11 @@ function webComponentScript(base64HTML) {
|
|
|
2400
2454
|
shadow.appendChild(preview);
|
|
2401
2455
|
shadow.appendChild(button);
|
|
2402
2456
|
|
|
2457
|
+
if (${startMinimized}) {
|
|
2458
|
+
iframe.setAttribute('inert', '');
|
|
2459
|
+
button.setAttribute('aria-expanded', 'false');
|
|
2460
|
+
}
|
|
2461
|
+
|
|
2403
2462
|
// Initialize preview
|
|
2404
2463
|
setTimeout(updatePreview, 100);
|
|
2405
2464
|
|
|
@@ -2410,14 +2469,14 @@ function webComponentScript(base64HTML) {
|
|
|
2410
2469
|
`
|
|
2411
2470
|
);
|
|
2412
2471
|
}
|
|
2413
|
-
function generateErrorOverlayHTML(html) {
|
|
2472
|
+
function generateErrorOverlayHTML(html, options) {
|
|
2414
2473
|
const nonce = Array.from(crypto.getRandomValues(new Uint8Array(16)), (b) => b.toString(16).padStart(2, "0")).join("");
|
|
2415
2474
|
const errorPage = html.replace("<head>", `<head><script>${iframeStorageBridge(nonce)}<\/script>`);
|
|
2416
2475
|
const base64HTML = Buffer.from(errorPage, "utf8").toString("base64");
|
|
2417
2476
|
return `
|
|
2418
2477
|
<script>${parentStorageBridge(nonce)}<\/script>
|
|
2419
2478
|
<nuxt-error-overlay></nuxt-error-overlay>
|
|
2420
|
-
<script>${webComponentScript(base64HTML)}<\/script>
|
|
2479
|
+
<script>${webComponentScript(base64HTML, options?.startMinimized ?? false)}<\/script>
|
|
2421
2480
|
`;
|
|
2422
2481
|
}
|
|
2423
2482
|
|
|
@@ -2473,10 +2532,11 @@ const errorHandler$0 = (async function errorhandler(error, event, { defaultHandl
|
|
|
2473
2532
|
setResponseHeader(event, header, value);
|
|
2474
2533
|
}
|
|
2475
2534
|
setResponseStatus(event, res.status && res.status !== 200 ? res.status : defaultRes.status, res.statusText || defaultRes.statusText);
|
|
2476
|
-
{
|
|
2535
|
+
if (!globalThis._importMeta_.test && typeof html === "string") {
|
|
2477
2536
|
const prettyResponse = await defaultHandler(error, event, { json: false });
|
|
2478
|
-
return send(event, html.replace("</body>", `${generateErrorOverlayHTML(prettyResponse.body)}</body>`));
|
|
2537
|
+
return send(event, html.replace("</body>", `${generateErrorOverlayHTML(prettyResponse.body, { startMinimized: 300 <= statusCode && statusCode < 500 })}</body>`));
|
|
2479
2538
|
}
|
|
2539
|
+
return send(event, html);
|
|
2480
2540
|
});
|
|
2481
2541
|
|
|
2482
2542
|
function defineNitroErrorHandler(handler) {
|
|
@@ -2630,13 +2690,13 @@ if (!window.__NUXT_DEVTOOLS_TIME_METRIC__) {
|
|
|
2630
2690
|
window.__NUXT_DEVTOOLS_TIME_METRIC__.appInit = Date.now()
|
|
2631
2691
|
`;
|
|
2632
2692
|
|
|
2633
|
-
const
|
|
2693
|
+
const _w_SCNoWsVHOrMPgN__IwX4Z81uE3xByM5qGG8i998U = (function(nitro) {
|
|
2634
2694
|
nitro.hooks.hook("render:html", (htmlContext) => {
|
|
2635
2695
|
htmlContext.head.push(`<script>${script$1}<\/script>`);
|
|
2636
2696
|
});
|
|
2637
2697
|
});
|
|
2638
2698
|
|
|
2639
|
-
const
|
|
2699
|
+
const _RyteHlfbnG6rTSkGS9ScvveuuX1HdLHnSCGhefj0MTs = defineNitroPlugin((nitroApp) => {
|
|
2640
2700
|
if (process.env.NUXT_OAUTH_FACEBOOK_CLIENT_ID && process.env.NUXT_OAUTH_FACEBOOK_CLIENT_SECRET || process.env.NUXT_OAUTH_INSTAGRAM_CLIENT_ID && process.env.NUXT_OAUTH_INSTAGRAM_CLIENT_SECRET) {
|
|
2641
2701
|
nitroApp.hooks.hook("render:html", (html) => {
|
|
2642
2702
|
html.head.unshift(`
|
|
@@ -2744,7 +2804,7 @@ function getSiteConfig(e, _options) {
|
|
|
2744
2804
|
return e.context.siteConfig.get(options);
|
|
2745
2805
|
}
|
|
2746
2806
|
|
|
2747
|
-
const
|
|
2807
|
+
const _Zn0TIjQWBh9KTD671uE6xJTA5SpaKNMELLIwnOvm9z0 = defineNitroPlugin(async (nitroApp) => {
|
|
2748
2808
|
nitroApp.hooks.hook("render:html", async (ctx, { event }) => {
|
|
2749
2809
|
getRouteRules(event);
|
|
2750
2810
|
process.env.NUXT_COMPONENT_ISLANDS && event.path.startsWith("/__nuxt_island");
|
|
@@ -3010,6 +3070,30 @@ const BOT_MAP = [
|
|
|
3010
3070
|
trusted: false
|
|
3011
3071
|
}
|
|
3012
3072
|
];
|
|
3073
|
+
|
|
3074
|
+
const ROBOT_DIRECTIVE_VALUES = {
|
|
3075
|
+
// Standard directives
|
|
3076
|
+
enabled: "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
|
|
3077
|
+
disabled: "noindex, nofollow",
|
|
3078
|
+
index: "index",
|
|
3079
|
+
noindex: "noindex",
|
|
3080
|
+
follow: "follow",
|
|
3081
|
+
nofollow: "nofollow",
|
|
3082
|
+
none: "none",
|
|
3083
|
+
all: "all",
|
|
3084
|
+
// Non-standard directives (not part of official robots spec)
|
|
3085
|
+
noai: "noai",
|
|
3086
|
+
noimageai: "noimageai"
|
|
3087
|
+
};
|
|
3088
|
+
function formatMaxImagePreview(value) {
|
|
3089
|
+
return `max-image-preview:${value}`;
|
|
3090
|
+
}
|
|
3091
|
+
function formatMaxSnippet(value) {
|
|
3092
|
+
return `max-snippet:${value}`;
|
|
3093
|
+
}
|
|
3094
|
+
function formatMaxVideoPreview(value) {
|
|
3095
|
+
return `max-video-preview:${value}`;
|
|
3096
|
+
}
|
|
3013
3097
|
function matches(pattern, path) {
|
|
3014
3098
|
const pathLength = path.length;
|
|
3015
3099
|
const patternLength = pattern.length;
|
|
@@ -3065,6 +3149,22 @@ function matchPathToRule(path, _rules) {
|
|
|
3065
3149
|
function asArray(v) {
|
|
3066
3150
|
return typeof v === "undefined" ? [] : Array.isArray(v) ? v : [v];
|
|
3067
3151
|
}
|
|
3152
|
+
function contentUsageToString(prefs) {
|
|
3153
|
+
return Object.entries(prefs).filter(([_, value]) => value !== void 0).map(([key, value]) => `${key}=${value}`).join(", ");
|
|
3154
|
+
}
|
|
3155
|
+
function normalizeContentPreferences(value) {
|
|
3156
|
+
if (!value)
|
|
3157
|
+
return [];
|
|
3158
|
+
if (Array.isArray(value))
|
|
3159
|
+
return value.filter((rule) => Boolean(rule));
|
|
3160
|
+
if (typeof value === "object" && !Array.isArray(value)) {
|
|
3161
|
+
const str = contentUsageToString(value);
|
|
3162
|
+
return str ? [str] : [];
|
|
3163
|
+
}
|
|
3164
|
+
if (typeof value === "string")
|
|
3165
|
+
return value ? [value] : [];
|
|
3166
|
+
return [];
|
|
3167
|
+
}
|
|
3068
3168
|
function normalizeGroup(group) {
|
|
3069
3169
|
if (group._normalized) {
|
|
3070
3170
|
const resolvedGroup = group;
|
|
@@ -3078,13 +3178,15 @@ function normalizeGroup(group) {
|
|
|
3078
3178
|
}
|
|
3079
3179
|
const disallow = asArray(group.disallow);
|
|
3080
3180
|
const allow = asArray(group.allow).filter((rule) => Boolean(rule));
|
|
3081
|
-
const contentUsage =
|
|
3181
|
+
const contentUsage = normalizeContentPreferences(group.contentUsage);
|
|
3182
|
+
const contentSignal = normalizeContentPreferences(group.contentSignal);
|
|
3082
3183
|
return {
|
|
3083
3184
|
...group,
|
|
3084
3185
|
userAgent: group.userAgent ? asArray(group.userAgent) : ["*"],
|
|
3085
3186
|
disallow,
|
|
3086
3187
|
allow,
|
|
3087
3188
|
contentUsage,
|
|
3189
|
+
contentSignal,
|
|
3088
3190
|
_indexable: !disallow.includes("/"),
|
|
3089
3191
|
_rules: [
|
|
3090
3192
|
...disallow.filter(Boolean).map((r) => ({ pattern: r, allow: false })),
|
|
@@ -3108,6 +3210,8 @@ function generateRobotsTxt({ groups, sitemaps }) {
|
|
|
3108
3210
|
lines.push(`Clean-param: ${cleanParam}`);
|
|
3109
3211
|
for (const contentUsage of group.contentUsage || [])
|
|
3110
3212
|
lines.push(`Content-Usage: ${contentUsage}`);
|
|
3213
|
+
for (const contentSignal of group.contentSignal || [])
|
|
3214
|
+
lines.push(`Content-Signal: ${contentSignal}`);
|
|
3111
3215
|
lines.push("");
|
|
3112
3216
|
}
|
|
3113
3217
|
for (const sitemap of sitemaps)
|
|
@@ -3135,6 +3239,51 @@ function createPatternMap() {
|
|
|
3135
3239
|
}
|
|
3136
3240
|
return patternMap;
|
|
3137
3241
|
}
|
|
3242
|
+
function normaliseRobotsRouteRule(config) {
|
|
3243
|
+
let allow;
|
|
3244
|
+
if (typeof config.robots === "boolean")
|
|
3245
|
+
allow = config.robots;
|
|
3246
|
+
else if (typeof config.robots === "object" && "indexable" in config.robots && typeof config.robots.indexable !== "undefined")
|
|
3247
|
+
allow = config.robots.indexable;
|
|
3248
|
+
let rule;
|
|
3249
|
+
if (typeof config.robots === "object" && config.robots !== null) {
|
|
3250
|
+
if ("rule" in config.robots && typeof config.robots.rule !== "undefined") {
|
|
3251
|
+
rule = config.robots.rule;
|
|
3252
|
+
} else if (!("indexable" in config.robots)) {
|
|
3253
|
+
const directives = [];
|
|
3254
|
+
for (const [key, value] of Object.entries(config.robots)) {
|
|
3255
|
+
if (value === false || value === null || value === void 0)
|
|
3256
|
+
continue;
|
|
3257
|
+
if (key in ROBOT_DIRECTIVE_VALUES && typeof value === "boolean" && value) {
|
|
3258
|
+
directives.push(ROBOT_DIRECTIVE_VALUES[key]);
|
|
3259
|
+
} else if (key === "max-image-preview" && typeof value === "string") {
|
|
3260
|
+
directives.push(formatMaxImagePreview(value));
|
|
3261
|
+
} else if (key === "max-snippet" && typeof value === "number") {
|
|
3262
|
+
directives.push(formatMaxSnippet(value));
|
|
3263
|
+
} else if (key === "max-video-preview" && typeof value === "number") {
|
|
3264
|
+
directives.push(formatMaxVideoPreview(value));
|
|
3265
|
+
}
|
|
3266
|
+
}
|
|
3267
|
+
if (directives.length > 0) {
|
|
3268
|
+
rule = directives.join(", ");
|
|
3269
|
+
}
|
|
3270
|
+
}
|
|
3271
|
+
} else if (typeof config.robots === "string") {
|
|
3272
|
+
rule = config.robots;
|
|
3273
|
+
}
|
|
3274
|
+
if (rule && typeof allow === "undefined") {
|
|
3275
|
+
const disallowIndicators = ["none", "noindex", "noai", "noimageai"];
|
|
3276
|
+
allow = !disallowIndicators.some(
|
|
3277
|
+
(indicator) => rule === indicator || rule.split(",").some((part) => part.trim() === indicator)
|
|
3278
|
+
);
|
|
3279
|
+
}
|
|
3280
|
+
if (typeof allow === "undefined" && typeof rule === "undefined")
|
|
3281
|
+
return;
|
|
3282
|
+
return {
|
|
3283
|
+
allow,
|
|
3284
|
+
rule
|
|
3285
|
+
};
|
|
3286
|
+
}
|
|
3138
3287
|
|
|
3139
3288
|
function useRuntimeConfigNuxtRobots(event) {
|
|
3140
3289
|
return useRuntimeConfig(event)["nuxt-robots"];
|
|
@@ -3157,7 +3306,7 @@ async function resolveRobotsTxtContext(e, nitro = useNitroApp()) {
|
|
|
3157
3306
|
return generateRobotsTxtCtx;
|
|
3158
3307
|
}
|
|
3159
3308
|
|
|
3160
|
-
const
|
|
3309
|
+
const _ZAgLRdUhp8Zt7vtFkaixxXqYUnoG64wVnb3BBHcHHU = defineNitroPlugin(async (nitroApp) => {
|
|
3161
3310
|
const { isNuxtContentV2, robotsDisabledValue, botDetection } = useRuntimeConfigNuxtRobots();
|
|
3162
3311
|
if (botDetection !== false) {
|
|
3163
3312
|
nitroApp._robotsPatternMap = createPatternMap();
|
|
@@ -3209,7 +3358,7 @@ function createI18nContext() {
|
|
|
3209
3358
|
}
|
|
3210
3359
|
|
|
3211
3360
|
/*!
|
|
3212
|
-
* shared v11.
|
|
3361
|
+
* shared v11.2.7
|
|
3213
3362
|
* (c) 2025 kazuya kawaguchi
|
|
3214
3363
|
* Released under the MIT License.
|
|
3215
3364
|
*/
|
|
@@ -3547,7 +3696,7 @@ function* detect(detectors, detection, path) {
|
|
|
3547
3696
|
}
|
|
3548
3697
|
yield { locale: detection.fallbackLocale, source: "fallback" };
|
|
3549
3698
|
}
|
|
3550
|
-
const
|
|
3699
|
+
const _vSAjmViAuf8beEPzzugIlKydW5HkGhpeBGueyLuLv1o = defineNitroPlugin(async (nitro) => {
|
|
3551
3700
|
const runtimeI18n = useRuntimeI18n();
|
|
3552
3701
|
const rootRedirect = resolveRootRedirect(runtimeI18n.rootRedirect);
|
|
3553
3702
|
const _defaultLocale = runtimeI18n.defaultLocale || "";
|
|
@@ -3656,7 +3805,7 @@ const devReducers = {
|
|
|
3656
3805
|
URL: (data) => data instanceof URL ? data.toString() : void 0
|
|
3657
3806
|
};
|
|
3658
3807
|
const asyncContext = getContext("nuxt-dev", { asyncContext: true, AsyncLocalStorage });
|
|
3659
|
-
const
|
|
3808
|
+
const _Si6pegzvrTRroR7Bt_ATgVC_y_ydi9i42yQBhZNYjZs = (nitroApp) => {
|
|
3660
3809
|
const handler = nitroApp.h3App.handler;
|
|
3661
3810
|
nitroApp.h3App.handler = (event) => {
|
|
3662
3811
|
return asyncContext.callAsync({ logs: [], event }, () => handler(event));
|
|
@@ -3727,7 +3876,7 @@ function onConsoleLog(callback) {
|
|
|
3727
3876
|
|
|
3728
3877
|
const script = "\"use strict\";(()=>{const t=window,e=document.documentElement,c=[\"dark\",\"light\"],n=getStorageValue(\"localStorage\",\"nuxt-color-mode\")||\"system\";let i=n===\"system\"?u():n;const r=e.getAttribute(\"data-color-mode-forced\");r&&(i=r),l(i),t[\"__NUXT_COLOR_MODE__\"]={preference:n,value:i,getColorScheme:u,addColorScheme:l,removeColorScheme:d};function l(o){const s=\"\"+o+\"\",a=\"\";e.classList?e.classList.add(s):e.className+=\" \"+s,a&&e.setAttribute(\"data-\"+a,o)}function d(o){const s=\"\"+o+\"\",a=\"\";e.classList?e.classList.remove(s):e.className=e.className.replace(new RegExp(s,\"g\"),\"\"),a&&e.removeAttribute(\"data-\"+a)}function f(o){return t.matchMedia(\"(prefers-color-scheme\"+o+\")\")}function u(){if(t.matchMedia&&f(\"\").media!==\"not all\"){for(const o of c)if(f(\":\"+o).matches)return o}return\"light\"}})();function getStorageValue(t,e){switch(t){case\"localStorage\":return window.localStorage.getItem(e);case\"sessionStorage\":return window.sessionStorage.getItem(e);case\"cookie\":return getCookie(e);default:return null}}function getCookie(t){const c=(\"; \"+window.document.cookie).split(\"; \"+t+\"=\");if(c.length===2)return c.pop()?.split(\";\").shift()}";
|
|
3729
3878
|
|
|
3730
|
-
const
|
|
3879
|
+
const _XX9IEjVWshLmMVIqGp15oAxz0tYfztvz3LmypBh179E = (function(nitro) {
|
|
3731
3880
|
nitro.hooks.hook("render:html", (htmlContext) => {
|
|
3732
3881
|
htmlContext.head.push(`<script>${script}<\/script>`);
|
|
3733
3882
|
});
|
|
@@ -3776,6 +3925,8 @@ function defineRenderHandler(render) {
|
|
|
3776
3925
|
});
|
|
3777
3926
|
}
|
|
3778
3927
|
|
|
3928
|
+
const r=Object.create(null),i=e=>globalThis.process?.env||globalThis._importMeta_.env||globalThis.Deno?.env.toObject()||globalThis.__env__||(e?r:globalThis),o=new Proxy(r,{get(e,s){return i()[s]??r[s]},has(e,s){const E=i();return s in E||s in r},set(e,s,E){const B=i(true);return B[s]=E,true},deleteProperty(e,s){if(!s)return false;const E=i(true);return delete E[s],true},ownKeys(){const e=i(true);return Object.keys(e)}}),t=typeof process<"u"&&process.env&&"development"||"",f=[["APPVEYOR"],["AWS_AMPLIFY","AWS_APP_ID",{ci:true}],["AZURE_PIPELINES","SYSTEM_TEAMFOUNDATIONCOLLECTIONURI"],["AZURE_STATIC","INPUT_AZURE_STATIC_WEB_APPS_API_TOKEN"],["APPCIRCLE","AC_APPCIRCLE"],["BAMBOO","bamboo_planKey"],["BITBUCKET","BITBUCKET_COMMIT"],["BITRISE","BITRISE_IO"],["BUDDY","BUDDY_WORKSPACE_ID"],["BUILDKITE"],["CIRCLE","CIRCLECI"],["CIRRUS","CIRRUS_CI"],["CLOUDFLARE_PAGES","CF_PAGES",{ci:true}],["CLOUDFLARE_WORKERS","WORKERS_CI",{ci:true}],["CODEBUILD","CODEBUILD_BUILD_ARN"],["CODEFRESH","CF_BUILD_ID"],["DRONE"],["DRONE","DRONE_BUILD_EVENT"],["DSARI"],["GITHUB_ACTIONS"],["GITLAB","GITLAB_CI"],["GITLAB","CI_MERGE_REQUEST_ID"],["GOCD","GO_PIPELINE_LABEL"],["LAYERCI"],["HUDSON","HUDSON_URL"],["JENKINS","JENKINS_URL"],["MAGNUM"],["NETLIFY"],["NETLIFY","NETLIFY_LOCAL",{ci:false}],["NEVERCODE"],["RENDER"],["SAIL","SAILCI"],["SEMAPHORE"],["SCREWDRIVER"],["SHIPPABLE"],["SOLANO","TDDIUM"],["STRIDER"],["TEAMCITY","TEAMCITY_VERSION"],["TRAVIS"],["VERCEL","NOW_BUILDER"],["VERCEL","VERCEL",{ci:false}],["VERCEL","VERCEL_ENV",{ci:false}],["APPCENTER","APPCENTER_BUILD_ID"],["CODESANDBOX","CODESANDBOX_SSE",{ci:false}],["CODESANDBOX","CODESANDBOX_HOST",{ci:false}],["STACKBLITZ"],["STORMKIT"],["CLEAVR"],["ZEABUR"],["CODESPHERE","CODESPHERE_APP_ID",{ci:true}],["RAILWAY","RAILWAY_PROJECT_ID"],["RAILWAY","RAILWAY_SERVICE_ID"],["DENO-DEPLOY","DENO_DEPLOYMENT_ID"],["FIREBASE_APP_HOSTING","FIREBASE_APP_HOSTING",{ci:true}]];function b(){if(globalThis.process?.env)for(const e of f){const s=e[1]||e[0];if(globalThis.process?.env[s])return {name:e[0].toLowerCase(),...e[2]}}return globalThis.process?.env?.SHELL==="/bin/jsh"&&globalThis.process?.versions?.webcontainer?{name:"stackblitz",ci:false}:{name:"",ci:false}}const l=b();l.name;function n(e){return e?e!=="false":false}const I=globalThis.process?.platform||"",T=n(o.CI)||l.ci!==false,R=n(globalThis.process?.stdout&&globalThis.process?.stdout.isTTY);n(o.DEBUG);const a=t==="test"||n(o.TEST),h=t==="dev"||t==="development";n(o.MINIMAL)||T||a||!R;const A=/^win/i.test(I);!n(o.NO_COLOR)&&(n(o.FORCE_COLOR)||(R||A)&&o.TERM!=="dumb"||T);const C=(globalThis.process?.versions?.node||"").replace(/^v/,"")||null;Number(C?.split(".")[0])||null;const W=globalThis.process||Object.create(null),_={versions:{}};new Proxy(W,{get(e,s){if(s==="env")return o;if(s in e)return e[s];if(s in _)return _[s]}});const O=globalThis.process?.release?.name==="node",c=!!globalThis.Bun||!!globalThis.process?.versions?.bun,D=!!globalThis.Deno,L=!!globalThis.fastly,S=!!globalThis.Netlify,u=!!globalThis.EdgeRuntime,N=globalThis.navigator?.userAgent==="Cloudflare-Workers",F=[[S,"netlify"],[u,"edge-light"],[N,"workerd"],[L,"fastly"],[D,"deno"],[c,"bun"],[O,"node"]];function G(){const e=F.find(s=>s[0]);if(e)return {name:e[1]}}const P=G();P?.name||"";
|
|
3929
|
+
|
|
3779
3930
|
const scheduledTasks = false;
|
|
3780
3931
|
|
|
3781
3932
|
const tasks = {
|
|
@@ -4023,6 +4174,7 @@ function escapeIfNeeded(value) {
|
|
|
4023
4174
|
|
|
4024
4175
|
async function debugSQLIfAllowed(sqlString) {
|
|
4025
4176
|
if (useRuntimeConfig().public.neonDebugSQL === true) {
|
|
4177
|
+
console.log(sqlString);
|
|
4026
4178
|
await useStorage().setItem("neonSQLQuery", sqlString);
|
|
4027
4179
|
}
|
|
4028
4180
|
}
|
|
@@ -4035,10 +4187,15 @@ async function count(neon, query) {
|
|
|
4035
4187
|
return await select(neon, { ...query, columns: ["count(*)"] });
|
|
4036
4188
|
}
|
|
4037
4189
|
async function select(neon, query) {
|
|
4190
|
+
console.log(query);
|
|
4038
4191
|
let sqlString = "SELECT ";
|
|
4039
4192
|
sqlString += getColumnsClause(query.columns);
|
|
4040
4193
|
sqlString += getTableClause(query.from);
|
|
4041
|
-
|
|
4194
|
+
console.log("good");
|
|
4195
|
+
sqlString += getWhereClause(query.where?.forEach((w) => {
|
|
4196
|
+
w.condition = w.condition ? w.condition.replace("LTE", "<").replace("GTE", ">") : w.condition;
|
|
4197
|
+
}));
|
|
4198
|
+
console.log("still good");
|
|
4042
4199
|
sqlString += getGroupByClause(query.group);
|
|
4043
4200
|
sqlString += getHavingClause(query.having);
|
|
4044
4201
|
sqlString += getOrderClause(query.order);
|
|
@@ -4368,32 +4525,53 @@ function _useSession(event, config = {}) {
|
|
|
4368
4525
|
return useSession(event, finalConfig);
|
|
4369
4526
|
}
|
|
4370
4527
|
|
|
4528
|
+
function getNitroOrigin$1(ctx = {}) {
|
|
4529
|
+
const isDev = ctx.isDev ?? h;
|
|
4530
|
+
const isPrerender = ctx.isPrerender ?? !!o.prerender;
|
|
4531
|
+
let host = "";
|
|
4532
|
+
let port = "";
|
|
4533
|
+
let protocol = o.NITRO_SSL_CERT && o.NITRO_SSL_KEY ? "https" : "http";
|
|
4534
|
+
if (isDev || isPrerender) {
|
|
4535
|
+
const devEnv = o.__NUXT_DEV__ || o.NUXT_VITE_NODE_OPTIONS;
|
|
4536
|
+
if (devEnv) {
|
|
4537
|
+
const parsed = JSON.parse(devEnv);
|
|
4538
|
+
const origin = parsed.proxy?.url || parsed.baseURL?.replace("/__nuxt_vite_node__", "");
|
|
4539
|
+
host = origin.replace(/^https?:\/\//, "");
|
|
4540
|
+
protocol = origin.startsWith("https") ? "https" : "http";
|
|
4541
|
+
}
|
|
4542
|
+
}
|
|
4543
|
+
if (!host && ctx.requestHost) {
|
|
4544
|
+
host = ctx.requestHost;
|
|
4545
|
+
protocol = ctx.requestProtocol || protocol;
|
|
4546
|
+
}
|
|
4547
|
+
if (!host) {
|
|
4548
|
+
host = o.NITRO_HOST || o.HOST || "";
|
|
4549
|
+
if (isDev)
|
|
4550
|
+
port = o.NITRO_PORT || o.PORT || "3000";
|
|
4551
|
+
}
|
|
4552
|
+
if (host.includes(":")) {
|
|
4553
|
+
const i = host.lastIndexOf(":");
|
|
4554
|
+
port = host.slice(i + 1);
|
|
4555
|
+
host = host.slice(0, i);
|
|
4556
|
+
}
|
|
4557
|
+
host = o.NUXT_SITE_HOST_OVERRIDE || host;
|
|
4558
|
+
port = o.NUXT_SITE_PORT_OVERRIDE || port;
|
|
4559
|
+
if (host.startsWith("http://") || host.startsWith("https://")) {
|
|
4560
|
+
protocol = host.startsWith("https://") ? "https" : "http";
|
|
4561
|
+
host = host.replace(/^https?:\/\//, "");
|
|
4562
|
+
} else if (!host.includes("localhost") && !host.startsWith("127.")) {
|
|
4563
|
+
protocol = "https";
|
|
4564
|
+
}
|
|
4565
|
+
return `${protocol}://${host}${port ? `:${port}` : ""}/`;
|
|
4566
|
+
}
|
|
4567
|
+
|
|
4371
4568
|
function getNitroOrigin(e) {
|
|
4372
|
-
|
|
4373
|
-
|
|
4374
|
-
|
|
4375
|
-
|
|
4376
|
-
|
|
4377
|
-
|
|
4378
|
-
if (process.env.__NUXT_DEV__) {
|
|
4379
|
-
const origin = JSON.parse(process.env.__NUXT_DEV__).proxy.url;
|
|
4380
|
-
host = withoutProtocol(origin);
|
|
4381
|
-
protocol = origin.includes("https") ? "https" : "http";
|
|
4382
|
-
} else if (process.env.NUXT_VITE_NODE_OPTIONS) {
|
|
4383
|
-
const origin = JSON.parse(process.env.NUXT_VITE_NODE_OPTIONS).baseURL.replace("/__nuxt_vite_node__", "");
|
|
4384
|
-
host = withoutProtocol(origin);
|
|
4385
|
-
protocol = origin.includes("https") ? "https" : "http";
|
|
4386
|
-
} else if (e) {
|
|
4387
|
-
host = getRequestHost(e, { xForwardedHost: true }) || host;
|
|
4388
|
-
protocol = getRequestProtocol(e, { xForwardedProto: true }) || protocol;
|
|
4389
|
-
}
|
|
4390
|
-
if (typeof host === "string" && host.includes(":")) {
|
|
4391
|
-
const hostParts = host.split(":");
|
|
4392
|
-
port = hostParts.pop();
|
|
4393
|
-
host = hostParts.join(":") || false;
|
|
4394
|
-
}
|
|
4395
|
-
port = port ? `:${port}` : "";
|
|
4396
|
-
return withTrailingSlash(`${protocol}://${host}${port}`);
|
|
4569
|
+
return getNitroOrigin$1({
|
|
4570
|
+
isDev: true,
|
|
4571
|
+
isPrerender: false,
|
|
4572
|
+
requestHost: e ? getRequestHost(e, { xForwardedHost: true }) : void 0,
|
|
4573
|
+
requestProtocol: e ? getRequestProtocol(e, { xForwardedProto: true }) : void 0
|
|
4574
|
+
});
|
|
4397
4575
|
}
|
|
4398
4576
|
|
|
4399
4577
|
function getSiteIndexable(e) {
|
|
@@ -4581,30 +4759,6 @@ function withSiteUrl(e, path, options = {}) {
|
|
|
4581
4759
|
});
|
|
4582
4760
|
}
|
|
4583
4761
|
|
|
4584
|
-
const ROBOT_DIRECTIVE_VALUES = {
|
|
4585
|
-
// Standard directives
|
|
4586
|
-
enabled: "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
|
|
4587
|
-
disabled: "noindex, nofollow",
|
|
4588
|
-
index: "index",
|
|
4589
|
-
noindex: "noindex",
|
|
4590
|
-
follow: "follow",
|
|
4591
|
-
nofollow: "nofollow",
|
|
4592
|
-
none: "none",
|
|
4593
|
-
all: "all",
|
|
4594
|
-
// Non-standard directives (not part of official robots spec)
|
|
4595
|
-
noai: "noai",
|
|
4596
|
-
noimageai: "noimageai"
|
|
4597
|
-
};
|
|
4598
|
-
function formatMaxImagePreview(value) {
|
|
4599
|
-
return `max-image-preview:${value}`;
|
|
4600
|
-
}
|
|
4601
|
-
function formatMaxSnippet(value) {
|
|
4602
|
-
return `max-snippet:${value}`;
|
|
4603
|
-
}
|
|
4604
|
-
function formatMaxVideoPreview(value) {
|
|
4605
|
-
return `max-video-preview:${value}`;
|
|
4606
|
-
}
|
|
4607
|
-
|
|
4608
4762
|
function withoutQuery$1(path) {
|
|
4609
4763
|
return path.split("?")[0];
|
|
4610
4764
|
}
|
|
@@ -4625,52 +4779,6 @@ function createNitroRouteRuleMatcher$1(e) {
|
|
|
4625
4779
|
};
|
|
4626
4780
|
}
|
|
4627
4781
|
|
|
4628
|
-
function normaliseRobotsRouteRule(config) {
|
|
4629
|
-
let allow;
|
|
4630
|
-
if (typeof config.robots === "boolean")
|
|
4631
|
-
allow = config.robots;
|
|
4632
|
-
else if (typeof config.robots === "object" && "indexable" in config.robots && typeof config.robots.indexable !== "undefined")
|
|
4633
|
-
allow = config.robots.indexable;
|
|
4634
|
-
let rule;
|
|
4635
|
-
if (typeof config.robots === "object" && config.robots !== null) {
|
|
4636
|
-
if ("rule" in config.robots && typeof config.robots.rule !== "undefined") {
|
|
4637
|
-
rule = config.robots.rule;
|
|
4638
|
-
} else if (!("indexable" in config.robots)) {
|
|
4639
|
-
const directives = [];
|
|
4640
|
-
for (const [key, value] of Object.entries(config.robots)) {
|
|
4641
|
-
if (value === false || value === null || value === void 0)
|
|
4642
|
-
continue;
|
|
4643
|
-
if (key in ROBOT_DIRECTIVE_VALUES && typeof value === "boolean" && value) {
|
|
4644
|
-
directives.push(ROBOT_DIRECTIVE_VALUES[key]);
|
|
4645
|
-
} else if (key === "max-image-preview" && typeof value === "string") {
|
|
4646
|
-
directives.push(formatMaxImagePreview(value));
|
|
4647
|
-
} else if (key === "max-snippet" && typeof value === "number") {
|
|
4648
|
-
directives.push(formatMaxSnippet(value));
|
|
4649
|
-
} else if (key === "max-video-preview" && typeof value === "number") {
|
|
4650
|
-
directives.push(formatMaxVideoPreview(value));
|
|
4651
|
-
}
|
|
4652
|
-
}
|
|
4653
|
-
if (directives.length > 0) {
|
|
4654
|
-
rule = directives.join(", ");
|
|
4655
|
-
}
|
|
4656
|
-
}
|
|
4657
|
-
} else if (typeof config.robots === "string") {
|
|
4658
|
-
rule = config.robots;
|
|
4659
|
-
}
|
|
4660
|
-
if (rule && typeof allow === "undefined") {
|
|
4661
|
-
const disallowIndicators = ["none", "noindex", "noai", "noimageai"];
|
|
4662
|
-
allow = !disallowIndicators.some(
|
|
4663
|
-
(indicator) => rule === indicator || rule.split(",").some((part) => part.trim() === indicator)
|
|
4664
|
-
);
|
|
4665
|
-
}
|
|
4666
|
-
if (typeof allow === "undefined" && typeof rule === "undefined")
|
|
4667
|
-
return;
|
|
4668
|
-
return {
|
|
4669
|
-
allow,
|
|
4670
|
-
rule
|
|
4671
|
-
};
|
|
4672
|
-
}
|
|
4673
|
-
|
|
4674
4782
|
function getSiteRobotConfig(e) {
|
|
4675
4783
|
const query = getQuery$1(e);
|
|
4676
4784
|
const hints = [];
|
|
@@ -4966,7 +5074,7 @@ function backwardsCompatibleSecurity(securityHeaders) {
|
|
|
4966
5074
|
return securityHeadersAsObject;
|
|
4967
5075
|
}
|
|
4968
5076
|
|
|
4969
|
-
const
|
|
5077
|
+
const _FFNedkM5SZopfRYB4BKq9aBU08RFJNhVnnZUUtYovc = defineNitroPlugin(async (nitroApp) => {
|
|
4970
5078
|
const appSecurityOptions = getAppSecurityOptions();
|
|
4971
5079
|
const runtimeConfig = useRuntimeConfig();
|
|
4972
5080
|
for (const route in runtimeConfig.nitro.routeRules) {
|
|
@@ -5010,11 +5118,11 @@ const _4Vm6PaMZNaFiyqlri4J_3If2IWln0vpRDlJmQDnf2jo = defineNitroPlugin(async (ni
|
|
|
5010
5118
|
await nitroApp.hooks.callHook("nuxt-security:ready");
|
|
5011
5119
|
});
|
|
5012
5120
|
|
|
5013
|
-
const sriHashes = {"/_nuxt/builds/meta/dev.json":"sha384-
|
|
5121
|
+
const sriHashes = {"/_nuxt/builds/meta/dev.json":"sha384-wFL2TUiINCjYCTz13jSAgOw6par/e5+NBLlLgrkp82rctAmcQrYj5S2Pz4mS3Jqq","/_nuxt/builds/latest.json":"sha384-DXEcAhrMjC/lXAqTB1AQgiVgnpoCCfQ8+4Gwf3aA4bGpEBt8x6hJGmm6IY0j0Akj","/favicon.ico":"sha384-qOhXBYvwwZHHuXW10XxZvVu9Mzkpqf/fw3zEOxCGyqOoKqyHbeudntAaY6nKOTro","/nuxt-ignis.png":"sha384-0A9c4mBzqU5z5xKB2ef9Sho451aXKA/G+oarzjR3hWMQaIvKYguRW7wYg95Yfei4","/unsplash.jpg":"sha384-66n0HIHfBVzK8qdw7zVfgwJ5htcrV6EtN2DQmlyxUIu46/kEKMRMqFrWKYm8bP18","/_ignis-config.json":"sha384-9GNVQUFQFtDz9ai1/QNGHSuqNbpv/mw0VHwh9BRcHlc9F/UV2eGAfzDkckI0o21c","/nuxt-spec.png":"sha384-lqerIwfMImy74T5uRR9ogeRAvkGehx21V4QBTVB0a6Zp+2VTFMZmjOtNAAti72LU"};
|
|
5014
5122
|
|
|
5015
5123
|
const SCRIPT_RE$1 = /<script((?=[^>]+\bsrc="([^"]+)")(?![^>]+\bintegrity="[^"]+")[^>]+)(?:\/>|><\/script>)/g;
|
|
5016
5124
|
const LINK_RE$1 = /<link((?=[^>]+\brel="(?:stylesheet|preload|modulepreload)")(?=[^>]+\bhref="([^"]+)")(?![^>]+\bintegrity="[\w\-+/=]+")[^>]+)>/g;
|
|
5017
|
-
const
|
|
5125
|
+
const _oiJ5ZJ_DwkdPfld7XGlvjU3GuyHYDN4LRs86zdiJXVo = defineNitroPlugin((nitroApp) => {
|
|
5018
5126
|
nitroApp.hooks.hook("render:html", (html, { event }) => {
|
|
5019
5127
|
const rules = resolveSecurityRules(event);
|
|
5020
5128
|
if (!rules.enabled || !rules.sri) {
|
|
@@ -5057,7 +5165,7 @@ function generateRandomNonce() {
|
|
|
5057
5165
|
return nonce;
|
|
5058
5166
|
}
|
|
5059
5167
|
|
|
5060
|
-
const
|
|
5168
|
+
const _Fw0JbntIm1WzY_n6DJ7pEpoHu3cXVEvgO9RV8E2k1eQ = defineNitroPlugin((nitroApp) => {
|
|
5061
5169
|
{
|
|
5062
5170
|
return;
|
|
5063
5171
|
}
|
|
@@ -5067,7 +5175,7 @@ const LINK_RE = /<link([^>]*?>)/gi;
|
|
|
5067
5175
|
const NONCE_RE = /nonce="[^"]+"/i;
|
|
5068
5176
|
const SCRIPT_RE = /<script([^>]*?>)/gi;
|
|
5069
5177
|
const STYLE_RE = /<style([^>]*?>)/gi;
|
|
5070
|
-
const
|
|
5178
|
+
const _IhsXKVLWoGOfXBrEPkCepER6fNPD87mCGjmZHRp7s = defineNitroPlugin((nitroApp) => {
|
|
5071
5179
|
nitroApp.hooks.hook("request", (event) => {
|
|
5072
5180
|
if (event.context.security?.nonce) {
|
|
5073
5181
|
return;
|
|
@@ -5113,7 +5221,7 @@ const _bnDr2rawczHHxYffyrIiQQAgQ2arBj7ot1j1Q38bV74 = defineNitroPlugin((nitroApp
|
|
|
5113
5221
|
});
|
|
5114
5222
|
});
|
|
5115
5223
|
|
|
5116
|
-
const
|
|
5224
|
+
const _bcshtX2T6lsqb5QgaOVq122BfOQkIrnyIGsvXyKZoxQ = defineNitroPlugin((nitroApp) => {
|
|
5117
5225
|
nitroApp.hooks.hook("render:html", (response, { event }) => {
|
|
5118
5226
|
if (response.island) {
|
|
5119
5227
|
return;
|
|
@@ -5161,13 +5269,13 @@ function updateCspVariables(csp, nonce, scriptHashes, styleHashes) {
|
|
|
5161
5269
|
return generatedCsp;
|
|
5162
5270
|
}
|
|
5163
5271
|
|
|
5164
|
-
const
|
|
5272
|
+
const _ywPGBM5qTtLLQn5M9IbEiybUYwnEziELEpREMDRC0xQ = defineNitroPlugin((nitroApp) => {
|
|
5165
5273
|
{
|
|
5166
5274
|
return;
|
|
5167
5275
|
}
|
|
5168
5276
|
});
|
|
5169
5277
|
|
|
5170
|
-
const
|
|
5278
|
+
const _PNEgarYwpPrH2oFWYy8IAbe0Pv4fKy08RE4kQ0jvNjQ = defineNitroPlugin((nitroApp) => {
|
|
5171
5279
|
nitroApp.hooks.hook("render:response", (response, { event }) => {
|
|
5172
5280
|
const rules = resolveSecurityRules(event);
|
|
5173
5281
|
if (rules.enabled && rules.headers) {
|
|
@@ -5190,7 +5298,7 @@ const _WGoGltCkvjyszwqp4ncggAngTNT0LjmCJ07K9ejco = defineNitroPlugin((nitroApp)
|
|
|
5190
5298
|
});
|
|
5191
5299
|
});
|
|
5192
5300
|
|
|
5193
|
-
const
|
|
5301
|
+
const _no__LpBrdasB3nIWPORJf7rb6Wb1jAuBM7v5yENc9zs = defineNitroPlugin((nitroApp) => {
|
|
5194
5302
|
nitroApp.hooks.hook("beforeResponse", (event) => {
|
|
5195
5303
|
const rules = resolveSecurityRules(event);
|
|
5196
5304
|
if (rules.enabled && rules.hidePoweredBy && !event.node.res.headersSent) {
|
|
@@ -5199,7 +5307,7 @@ const _A415alzmzNvROQZ8AeeoPviXW2dqDT3QcR4fiPYIeD4 = defineNitroPlugin((nitroApp
|
|
|
5199
5307
|
});
|
|
5200
5308
|
});
|
|
5201
5309
|
|
|
5202
|
-
const
|
|
5310
|
+
const _jAUcIqAt6i2m6fnY_gYI62h_OiI9dTuaqqsv3lo4Qg = defineNitroPlugin(async (nitroApp) => {
|
|
5203
5311
|
{
|
|
5204
5312
|
const prerenderedHeaders = await useStorage("assets:nuxt-security").getItem("headers.json") || {};
|
|
5205
5313
|
nitroApp.hooks.hook("beforeResponse", (event) => {
|
|
@@ -5215,22 +5323,22 @@ const _zx7ORanOQesZSIooVG7NvNwboquqxPtY8WKNATdsroM = defineNitroPlugin(async (ni
|
|
|
5215
5323
|
});
|
|
5216
5324
|
|
|
5217
5325
|
const plugins = [
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5326
|
+
_w_SCNoWsVHOrMPgN__IwX4Z81uE3xByM5qGG8i998U,
|
|
5327
|
+
_RyteHlfbnG6rTSkGS9ScvveuuX1HdLHnSCGhefj0MTs,
|
|
5328
|
+
_Zn0TIjQWBh9KTD671uE6xJTA5SpaKNMELLIwnOvm9z0,
|
|
5329
|
+
_ZAgLRdUhp8Zt7vtFkaixxXqYUnoG64wVnb3BBHcHHU,
|
|
5330
|
+
_vSAjmViAuf8beEPzzugIlKydW5HkGhpeBGueyLuLv1o,
|
|
5331
|
+
_Si6pegzvrTRroR7Bt_ATgVC_y_ydi9i42yQBhZNYjZs,
|
|
5332
|
+
_XX9IEjVWshLmMVIqGp15oAxz0tYfztvz3LmypBh179E,
|
|
5333
|
+
_FFNedkM5SZopfRYB4BKq9aBU08RFJNhVnnZUUtYovc,
|
|
5334
|
+
_oiJ5ZJ_DwkdPfld7XGlvjU3GuyHYDN4LRs86zdiJXVo,
|
|
5335
|
+
_Fw0JbntIm1WzY_n6DJ7pEpoHu3cXVEvgO9RV8E2k1eQ,
|
|
5336
|
+
_IhsXKVLWoGOfXBrEPkCepER6fNPD87mCGjmZHRp7s,
|
|
5337
|
+
_bcshtX2T6lsqb5QgaOVq122BfOQkIrnyIGsvXyKZoxQ,
|
|
5338
|
+
_ywPGBM5qTtLLQn5M9IbEiybUYwnEziELEpREMDRC0xQ,
|
|
5339
|
+
_PNEgarYwpPrH2oFWYy8IAbe0Pv4fKy08RE4kQ0jvNjQ,
|
|
5340
|
+
_no__LpBrdasB3nIWPORJf7rb6Wb1jAuBM7v5yENc9zs,
|
|
5341
|
+
_jAUcIqAt6i2m6fnY_gYI62h_OiI9dTuaqqsv3lo4Qg
|
|
5234
5342
|
];
|
|
5235
5343
|
|
|
5236
5344
|
const assets = {};
|
|
@@ -5258,7 +5366,7 @@ function getAsset (id) {
|
|
|
5258
5366
|
|
|
5259
5367
|
const METHODS = /* @__PURE__ */ new Set(["HEAD", "GET"]);
|
|
5260
5368
|
const EncodingMap = { gzip: ".gz", br: ".br" };
|
|
5261
|
-
const
|
|
5369
|
+
const _aBJLZz = eventHandler((event) => {
|
|
5262
5370
|
if (event.method && !METHODS.has(event.method)) {
|
|
5263
5371
|
return;
|
|
5264
5372
|
}
|
|
@@ -5398,7 +5506,7 @@ const getSSRRenderer = lazyCachedFunction(async () => {
|
|
|
5398
5506
|
});
|
|
5399
5507
|
async function renderToString$1(input, context) {
|
|
5400
5508
|
const html = await renderToString(input, context);
|
|
5401
|
-
if (process.env.NUXT_VITE_NODE_OPTIONS) {
|
|
5509
|
+
if (process$1.env.NUXT_VITE_NODE_OPTIONS) {
|
|
5402
5510
|
renderer.rendererContext.updateManifest(await getClientManifest());
|
|
5403
5511
|
}
|
|
5404
5512
|
return APP_ROOT_OPEN_TAG + html + APP_ROOT_CLOSE_TAG;
|
|
@@ -5724,7 +5832,7 @@ const defaultSecurityConfig = (serverlUrl, strict) => {
|
|
|
5724
5832
|
|
|
5725
5833
|
const FILE_UPLOAD_HEADER = "multipart/form-data";
|
|
5726
5834
|
const defaultSizeLimiter = defaultSecurityConfig("").requestSizeLimiter;
|
|
5727
|
-
const
|
|
5835
|
+
const _P5KhqA = defineEventHandler((event) => {
|
|
5728
5836
|
const rules = resolveSecurityRules(event);
|
|
5729
5837
|
if (rules.enabled && rules.requestSizeLimiter) {
|
|
5730
5838
|
const requestSizeLimiter = defu(
|
|
@@ -5750,7 +5858,7 @@ const _0WQsJo = defineEventHandler((event) => {
|
|
|
5750
5858
|
}
|
|
5751
5859
|
});
|
|
5752
5860
|
|
|
5753
|
-
const
|
|
5861
|
+
const _uMfJTP = defineEventHandler((event) => {
|
|
5754
5862
|
const rules = resolveSecurityRules(event);
|
|
5755
5863
|
if (rules.enabled && rules.corsHandler) {
|
|
5756
5864
|
const { corsHandler } = rules;
|
|
@@ -5775,7 +5883,7 @@ const _fTCRwx = defineEventHandler((event) => {
|
|
|
5775
5883
|
}
|
|
5776
5884
|
});
|
|
5777
5885
|
|
|
5778
|
-
const
|
|
5886
|
+
const _TjfwyU = defineEventHandler((event) => {
|
|
5779
5887
|
const rules = resolveSecurityRules(event);
|
|
5780
5888
|
if (rules.enabled && rules.allowedMethodsRestricter) {
|
|
5781
5889
|
const { allowedMethodsRestricter } = rules;
|
|
@@ -5795,7 +5903,7 @@ const _XNXCfD = defineEventHandler((event) => {
|
|
|
5795
5903
|
|
|
5796
5904
|
const storage$1 = useStorage("#rate-limiter-storage");
|
|
5797
5905
|
const defaultRateLimiter = defaultSecurityConfig("").rateLimiter;
|
|
5798
|
-
const
|
|
5906
|
+
const _3ipjNg = defineEventHandler(async (event) => {
|
|
5799
5907
|
const rules = resolveSecurityRules(event);
|
|
5800
5908
|
const route = resolveSecurityRoute(event);
|
|
5801
5909
|
if (rules.enabled && rules.rateLimiter) {
|
|
@@ -5858,7 +5966,7 @@ function getIP(event, customIpHeader) {
|
|
|
5858
5966
|
return ip;
|
|
5859
5967
|
}
|
|
5860
5968
|
|
|
5861
|
-
const
|
|
5969
|
+
const _p1m2Kd = defineEventHandler(async (event) => {
|
|
5862
5970
|
const rules = resolveSecurityRules(event);
|
|
5863
5971
|
if (rules.enabled && rules.xssValidator) {
|
|
5864
5972
|
const filterOpt = {
|
|
@@ -5902,7 +6010,7 @@ const _6UgyB1 = defineEventHandler(async (event) => {
|
|
|
5902
6010
|
|
|
5903
6011
|
const warnOnceSet = /* @__PURE__ */ new Set();
|
|
5904
6012
|
const DEFAULT_ENDPOINT = "https://api.iconify.design";
|
|
5905
|
-
const
|
|
6013
|
+
const _s81vkT = defineCachedEventHandler(async (event) => {
|
|
5906
6014
|
const url = getRequestURL(event);
|
|
5907
6015
|
if (!url)
|
|
5908
6016
|
return createError({ status: 400, message: "Invalid icon request" });
|
|
@@ -5965,7 +6073,7 @@ function displayRawWarning() {
|
|
|
5965
6073
|
return useRuntimeConfig().public.neonRawWarning;
|
|
5966
6074
|
}
|
|
5967
6075
|
|
|
5968
|
-
const
|
|
6076
|
+
const _EjRxst = defineEventHandler(async (event) => {
|
|
5969
6077
|
try {
|
|
5970
6078
|
const body = await readBody(event);
|
|
5971
6079
|
const neon = getNeonClient();
|
|
@@ -5980,7 +6088,7 @@ const _TMe9Qo = defineEventHandler(async (event) => {
|
|
|
5980
6088
|
}
|
|
5981
6089
|
});
|
|
5982
6090
|
|
|
5983
|
-
const
|
|
6091
|
+
const _kaOIzd = defineEventHandler(async (event) => {
|
|
5984
6092
|
try {
|
|
5985
6093
|
const body = await readBody(event);
|
|
5986
6094
|
const neon = getNeonClient();
|
|
@@ -5991,9 +6099,11 @@ const _8GcqiV = defineEventHandler(async (event) => {
|
|
|
5991
6099
|
}
|
|
5992
6100
|
});
|
|
5993
6101
|
|
|
5994
|
-
const
|
|
6102
|
+
const _KueSjI = defineEventHandler(async (event) => {
|
|
5995
6103
|
try {
|
|
6104
|
+
console.log("select called");
|
|
5996
6105
|
const body = await readBody(event);
|
|
6106
|
+
console.table(body);
|
|
5997
6107
|
const neon = getNeonClient();
|
|
5998
6108
|
const results = await select(neon, { ...body });
|
|
5999
6109
|
return results;
|
|
@@ -6002,7 +6112,7 @@ const _bdtZK_ = defineEventHandler(async (event) => {
|
|
|
6002
6112
|
}
|
|
6003
6113
|
});
|
|
6004
6114
|
|
|
6005
|
-
const
|
|
6115
|
+
const _V0vCIz = defineEventHandler(async (event) => {
|
|
6006
6116
|
try {
|
|
6007
6117
|
const body = await readBody(event);
|
|
6008
6118
|
const neon = getNeonClient();
|
|
@@ -6018,7 +6128,7 @@ const _9heHrE = defineEventHandler(async (event) => {
|
|
|
6018
6128
|
}
|
|
6019
6129
|
});
|
|
6020
6130
|
|
|
6021
|
-
const
|
|
6131
|
+
const _UMOSGQ = defineEventHandler(async (event) => {
|
|
6022
6132
|
try {
|
|
6023
6133
|
const body = await readBody(event);
|
|
6024
6134
|
const neon = getNeonClient();
|
|
@@ -6034,7 +6144,7 @@ const _RbxPM9 = defineEventHandler(async (event) => {
|
|
|
6034
6144
|
}
|
|
6035
6145
|
});
|
|
6036
6146
|
|
|
6037
|
-
const
|
|
6147
|
+
const _QLaobO = defineEventHandler(async (event) => {
|
|
6038
6148
|
try {
|
|
6039
6149
|
const body = await readBody(event);
|
|
6040
6150
|
const neon = getNeonClient();
|
|
@@ -6050,12 +6160,12 @@ const _e8NFRG = defineEventHandler(async (event) => {
|
|
|
6050
6160
|
}
|
|
6051
6161
|
});
|
|
6052
6162
|
|
|
6053
|
-
const
|
|
6163
|
+
const _2_fp1a = eventHandler(async (event) => {
|
|
6054
6164
|
await clearUserSession(event);
|
|
6055
6165
|
return { loggedOut: true };
|
|
6056
6166
|
});
|
|
6057
6167
|
|
|
6058
|
-
const
|
|
6168
|
+
const _8YFWwD = eventHandler(async (event) => {
|
|
6059
6169
|
const session = await getUserSession(event);
|
|
6060
6170
|
if (Object.keys(session).length > 0) {
|
|
6061
6171
|
await sessionHooks.callHookParallel("fetch", session, event);
|
|
@@ -6064,7 +6174,7 @@ const _DkeHIc = eventHandler(async (event) => {
|
|
|
6064
6174
|
return data;
|
|
6065
6175
|
});
|
|
6066
6176
|
|
|
6067
|
-
const
|
|
6177
|
+
const _GDEiau = eventHandler(async (e) => {
|
|
6068
6178
|
if (e.context._initedSiteConfig)
|
|
6069
6179
|
return;
|
|
6070
6180
|
const runtimeConfig = useRuntimeConfig(e);
|
|
@@ -6115,7 +6225,7 @@ const _HNUtXX = eventHandler(async (e) => {
|
|
|
6115
6225
|
e.context._initedSiteConfig = true;
|
|
6116
6226
|
});
|
|
6117
6227
|
|
|
6118
|
-
const
|
|
6228
|
+
const _mIOHyL = eventHandler(async (e) => {
|
|
6119
6229
|
const siteConfig = getSiteConfig(e);
|
|
6120
6230
|
const nitroOrigin = getNitroOrigin(e);
|
|
6121
6231
|
const runtimeConfig = useRuntimeConfig(e);
|
|
@@ -6129,7 +6239,7 @@ const _NLXa3j = eventHandler(async (e) => {
|
|
|
6129
6239
|
};
|
|
6130
6240
|
});
|
|
6131
6241
|
|
|
6132
|
-
const
|
|
6242
|
+
const _Q9QB_M = defineEventHandler(async (e) => {
|
|
6133
6243
|
const nitroApp = useNitroApp();
|
|
6134
6244
|
const { indexable, hints } = getSiteRobotConfig(e);
|
|
6135
6245
|
const { credits, isNuxtContentV2, cacheControl } = useRuntimeConfigNuxtRobots(e);
|
|
@@ -6188,7 +6298,7 @@ const _WLd7Ho = defineEventHandler(async (e) => {
|
|
|
6188
6298
|
return hookCtx.robotsTxt;
|
|
6189
6299
|
});
|
|
6190
6300
|
|
|
6191
|
-
const
|
|
6301
|
+
const _OXTxFn = defineEventHandler(async (e) => {
|
|
6192
6302
|
if (e.path === "/robots.txt" || e.path.startsWith("/__") || e.path.startsWith("/api") || e.path.startsWith("/_nuxt"))
|
|
6193
6303
|
return;
|
|
6194
6304
|
const nuxtRobotsConfig = useRuntimeConfigNuxtRobots(e);
|
|
@@ -6199,10 +6309,15 @@ const _mUSd9H = defineEventHandler(async (e) => {
|
|
|
6199
6309
|
setHeader(e, "X-Robots-Tag", robotConfig.rule);
|
|
6200
6310
|
}
|
|
6201
6311
|
e.context.robots = robotConfig;
|
|
6312
|
+
{
|
|
6313
|
+
const productionRobotConfig = getPathRobotConfig(e, { skipSiteIndexable: true });
|
|
6314
|
+
setHeader(e, "X-Robots-Production", productionRobotConfig.rule);
|
|
6315
|
+
e.context.robotsProduction = productionRobotConfig;
|
|
6316
|
+
}
|
|
6202
6317
|
}
|
|
6203
6318
|
});
|
|
6204
6319
|
|
|
6205
|
-
const
|
|
6320
|
+
const _C_LEvw = defineEventHandler(async (e) => {
|
|
6206
6321
|
const runtimeConfig = useRuntimeConfigNuxtRobots(e);
|
|
6207
6322
|
const { indexable, hints } = getSiteRobotConfig(e);
|
|
6208
6323
|
const siteConfig = useSiteConfig(e);
|
|
@@ -6222,15 +6337,46 @@ const _2pyPvz = defineEventHandler(async (e) => {
|
|
|
6222
6337
|
};
|
|
6223
6338
|
});
|
|
6224
6339
|
|
|
6225
|
-
const
|
|
6340
|
+
const _zl1VW_ = defineEventHandler(async (e) => {
|
|
6226
6341
|
const query = getQuery$1(e);
|
|
6227
6342
|
const path = query.path;
|
|
6343
|
+
const isMockProduction = Boolean(query.mockProductionEnv);
|
|
6228
6344
|
delete query.path;
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
const
|
|
6233
|
-
|
|
6345
|
+
let robotsHeader = null;
|
|
6346
|
+
let robotsContent = null;
|
|
6347
|
+
let robotsHint = null;
|
|
6348
|
+
const res = await $fetch.raw(withQuery(path, query)).catch(() => null);
|
|
6349
|
+
if (res) {
|
|
6350
|
+
const html = res._data;
|
|
6351
|
+
robotsHeader = String(res.headers.get("x-robots-tag"));
|
|
6352
|
+
if (isMockProduction) {
|
|
6353
|
+
const productionHeader = res.headers.get("x-robots-production");
|
|
6354
|
+
if (productionHeader) {
|
|
6355
|
+
robotsHeader = String(productionHeader);
|
|
6356
|
+
}
|
|
6357
|
+
const productionMeta = String(html).match(/<meta[^>]+name=["']robots["'][^>]+data-production-content=["']([^"']+)["'](?:[^>]+data-hint=["']([^"']+)["'])?[^>]*>/i);
|
|
6358
|
+
if (productionMeta) {
|
|
6359
|
+
[, robotsContent = null, robotsHint = null] = productionMeta;
|
|
6360
|
+
}
|
|
6361
|
+
}
|
|
6362
|
+
if (!robotsContent) {
|
|
6363
|
+
const robotsMeta = String(html).match(/<meta[^>]+name=["']robots["'][^>]+content=["']([^"']+)["'](?:[^>]+data-hint=["']([^"']+)["'])?[^>]*>/i);
|
|
6364
|
+
if (robotsMeta) {
|
|
6365
|
+
[, robotsContent = null, robotsHint = null] = robotsMeta;
|
|
6366
|
+
}
|
|
6367
|
+
}
|
|
6368
|
+
}
|
|
6369
|
+
if (!robotsContent) {
|
|
6370
|
+
const robotConfig = getPathRobotConfig(e, {
|
|
6371
|
+
path,
|
|
6372
|
+
skipSiteIndexable: isMockProduction
|
|
6373
|
+
});
|
|
6374
|
+
robotsContent = robotConfig.rule;
|
|
6375
|
+
robotsHint = robotConfig.debug?.source || null;
|
|
6376
|
+
if (!robotsHeader) {
|
|
6377
|
+
robotsHeader = robotConfig.rule;
|
|
6378
|
+
}
|
|
6379
|
+
}
|
|
6234
6380
|
const [source, line] = robotsHint ? robotsHint.split(",") : [null, null];
|
|
6235
6381
|
return {
|
|
6236
6382
|
rule: robotsContent,
|
|
@@ -6246,7 +6392,7 @@ const _ABgk2N = defineEventHandler(async (e) => {
|
|
|
6246
6392
|
};
|
|
6247
6393
|
});
|
|
6248
6394
|
|
|
6249
|
-
const
|
|
6395
|
+
const _W107Ad = defineEventHandler(async (e) => {
|
|
6250
6396
|
const collections = [];
|
|
6251
6397
|
for (const collection in contentManifest) {
|
|
6252
6398
|
if (contentManifest[collection].fields.sitemap) {
|
|
@@ -6256,16 +6402,17 @@ const _kdhSXr = defineEventHandler(async (e) => {
|
|
|
6256
6402
|
const contentList = [];
|
|
6257
6403
|
for (const collection of collections) {
|
|
6258
6404
|
contentList.push(
|
|
6405
|
+
// @ts-expect-error dynamic collection name
|
|
6259
6406
|
queryCollection(e, collection).select("path", "sitemap").where("path", "IS NOT NULL").where("sitemap", "IS NOT NULL").all()
|
|
6260
6407
|
);
|
|
6261
6408
|
}
|
|
6262
6409
|
const results = await Promise.all(contentList);
|
|
6263
|
-
return results.flatMap(
|
|
6264
|
-
|
|
6265
|
-
loc:
|
|
6266
|
-
...
|
|
6267
|
-
}))
|
|
6268
|
-
|
|
6410
|
+
return results.flatMap(
|
|
6411
|
+
(entries) => entries.filter((c) => c.sitemap !== false && c.path).map((c) => ({
|
|
6412
|
+
loc: c.path,
|
|
6413
|
+
...typeof c.sitemap === "object" ? c.sitemap : {}
|
|
6414
|
+
}))
|
|
6415
|
+
).filter(Boolean);
|
|
6269
6416
|
});
|
|
6270
6417
|
|
|
6271
6418
|
const logger = createConsola({
|
|
@@ -6292,11 +6439,12 @@ function mergeOnKey$1(arr, key) {
|
|
|
6292
6439
|
result[resultLength++] = item;
|
|
6293
6440
|
}
|
|
6294
6441
|
}
|
|
6295
|
-
|
|
6442
|
+
result.length = resultLength;
|
|
6443
|
+
return result;
|
|
6296
6444
|
}
|
|
6297
6445
|
function splitForLocales(path, locales) {
|
|
6298
6446
|
const prefix = withLeadingSlash(path).split("/")[1];
|
|
6299
|
-
if (locales.includes(prefix))
|
|
6447
|
+
if (prefix && locales.includes(prefix))
|
|
6300
6448
|
return [prefix, path.replace(`/${prefix}`, "")];
|
|
6301
6449
|
return [null, path];
|
|
6302
6450
|
}
|
|
@@ -6328,24 +6476,33 @@ function createFilter(options = {}) {
|
|
|
6328
6476
|
const exclude = options.exclude || [];
|
|
6329
6477
|
if (include.length === 0 && exclude.length === 0)
|
|
6330
6478
|
return () => true;
|
|
6479
|
+
const excludeRegex = exclude.filter((r) => r instanceof RegExp);
|
|
6480
|
+
const includeRegex = include.filter((r) => r instanceof RegExp);
|
|
6481
|
+
const excludeStrings = exclude.filter((r) => typeof r === "string");
|
|
6482
|
+
const includeStrings = include.filter((r) => typeof r === "string");
|
|
6483
|
+
const excludeMatcher = excludeStrings.length > 0 ? toRouteMatcher(createRouter({
|
|
6484
|
+
routes: Object.fromEntries(excludeStrings.map((r) => [r, true])),
|
|
6485
|
+
strictTrailingSlash: false
|
|
6486
|
+
})) : null;
|
|
6487
|
+
const includeMatcher = includeStrings.length > 0 ? toRouteMatcher(createRouter({
|
|
6488
|
+
routes: Object.fromEntries(includeStrings.map((r) => [r, true])),
|
|
6489
|
+
strictTrailingSlash: false
|
|
6490
|
+
})) : null;
|
|
6491
|
+
const excludeExact = new Set(excludeStrings);
|
|
6492
|
+
const includeExact = new Set(includeStrings);
|
|
6331
6493
|
return function(path) {
|
|
6332
|
-
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
|
|
6343
|
-
|
|
6344
|
-
const routeRulesMatcher = toRouteMatcher(createRouter({ routes, strictTrailingSlash: false }));
|
|
6345
|
-
if (routeRulesMatcher.matchAll(path).length > 0)
|
|
6346
|
-
return Boolean(v.result);
|
|
6347
|
-
}
|
|
6348
|
-
}
|
|
6494
|
+
if (excludeRegex.some((r) => r.test(path)))
|
|
6495
|
+
return false;
|
|
6496
|
+
if (excludeExact.has(path))
|
|
6497
|
+
return false;
|
|
6498
|
+
if (excludeMatcher && excludeMatcher.matchAll(path).length > 0)
|
|
6499
|
+
return false;
|
|
6500
|
+
if (includeRegex.some((r) => r.test(path)))
|
|
6501
|
+
return true;
|
|
6502
|
+
if (includeExact.has(path))
|
|
6503
|
+
return true;
|
|
6504
|
+
if (includeMatcher && includeMatcher.matchAll(path).length > 0)
|
|
6505
|
+
return true;
|
|
6349
6506
|
return include.length === 0;
|
|
6350
6507
|
};
|
|
6351
6508
|
}
|
|
@@ -6681,19 +6838,18 @@ function extractUrlFromParsedElement(urlElement, warnings) {
|
|
|
6681
6838
|
});
|
|
6682
6839
|
}
|
|
6683
6840
|
}
|
|
6684
|
-
|
|
6841
|
+
return Object.fromEntries(
|
|
6685
6842
|
Object.entries(urlObj).filter(
|
|
6686
6843
|
([_, value]) => value != null && (!Array.isArray(value) || value.length > 0)
|
|
6687
6844
|
)
|
|
6688
6845
|
);
|
|
6689
|
-
return filteredUrlObj;
|
|
6690
6846
|
}
|
|
6691
6847
|
async function parseSitemapXml(xml) {
|
|
6692
6848
|
const warnings = [];
|
|
6693
6849
|
if (!xml) {
|
|
6694
6850
|
throw new Error("Empty XML input provided");
|
|
6695
6851
|
}
|
|
6696
|
-
const { XMLParser } = await import('file://C:/Git/nuxt-ignis/
|
|
6852
|
+
const { XMLParser } = await import('file://C:/Git/nuxt-ignis/node_modules/.pnpm/fast-xml-parser@5.3.3/node_modules/fast-xml-parser/src/fxp.js');
|
|
6697
6853
|
const parser = new XMLParser({
|
|
6698
6854
|
isArray: (tagName) => ["url", "image", "video", "link", "tag", "price"].includes(tagName),
|
|
6699
6855
|
removeNSPrefix: true,
|
|
@@ -6840,11 +6996,15 @@ async function fetchDataSource(input, event) {
|
|
|
6840
6996
|
}
|
|
6841
6997
|
}
|
|
6842
6998
|
}
|
|
6843
|
-
function globalSitemapSources() {
|
|
6844
|
-
|
|
6999
|
+
async function globalSitemapSources() {
|
|
7000
|
+
const m = await Promise.resolve().then(function () { return globalSources; });
|
|
7001
|
+
return [...m.sources];
|
|
6845
7002
|
}
|
|
6846
|
-
function childSitemapSources(definition) {
|
|
6847
|
-
|
|
7003
|
+
async function childSitemapSources(definition) {
|
|
7004
|
+
if (!definition?._hasSourceChunk)
|
|
7005
|
+
return [];
|
|
7006
|
+
const m = await Promise.resolve().then(function () { return childSources; });
|
|
7007
|
+
return [...m.sources[definition.sitemapName] || []];
|
|
6848
7008
|
}
|
|
6849
7009
|
async function resolveSitemapSources(sources, event) {
|
|
6850
7010
|
return (await Promise.all(
|
|
@@ -6866,29 +7026,32 @@ async function resolveSitemapSources(sources, event) {
|
|
|
6866
7026
|
)).flat();
|
|
6867
7027
|
}
|
|
6868
7028
|
|
|
6869
|
-
const
|
|
7029
|
+
const _V57sGR = defineEventHandler(async (e) => {
|
|
6870
7030
|
const _runtimeConfig = useSitemapRuntimeConfig();
|
|
7031
|
+
const siteConfig = getSiteConfig(e);
|
|
6871
7032
|
const { sitemaps: _sitemaps } = _runtimeConfig;
|
|
6872
7033
|
const runtimeConfig = { ..._runtimeConfig };
|
|
6873
7034
|
delete runtimeConfig.sitemaps;
|
|
6874
7035
|
const globalSources = await globalSitemapSources();
|
|
6875
|
-
const nitroOrigin =
|
|
7036
|
+
const nitroOrigin = getNitroOrigin(e);
|
|
6876
7037
|
const sitemaps = {};
|
|
6877
7038
|
for (const s of Object.keys(_sitemaps)) {
|
|
7039
|
+
const sitemap = _sitemaps[s];
|
|
6878
7040
|
sitemaps[s] = {
|
|
6879
|
-
...
|
|
6880
|
-
sources: await resolveSitemapSources(await childSitemapSources(
|
|
7041
|
+
...sitemap,
|
|
7042
|
+
sources: await resolveSitemapSources(await childSitemapSources(sitemap), e)
|
|
6881
7043
|
};
|
|
6882
7044
|
}
|
|
6883
7045
|
return {
|
|
6884
7046
|
nitroOrigin,
|
|
6885
7047
|
sitemaps,
|
|
6886
7048
|
runtimeConfig,
|
|
6887
|
-
globalSources: await resolveSitemapSources(globalSources, e)
|
|
7049
|
+
globalSources: await resolveSitemapSources(globalSources, e),
|
|
7050
|
+
siteConfig: { ...siteConfig }
|
|
6888
7051
|
};
|
|
6889
7052
|
});
|
|
6890
7053
|
|
|
6891
|
-
const
|
|
7054
|
+
const _aOy17u = defineEventHandler(async (e) => {
|
|
6892
7055
|
const fixPath = createSitePathResolver(e, { absolute: false, withBase: true });
|
|
6893
7056
|
const { sitemapName: fallbackSitemapName, cacheMaxAgeSeconds, version, xslColumns, xslTips } = useSitemapRuntimeConfig();
|
|
6894
7057
|
setHeader(e, "Content-Type", "application/xslt+xml");
|
|
@@ -7162,42 +7325,47 @@ function createNitroRouteRuleMatcher() {
|
|
|
7162
7325
|
}
|
|
7163
7326
|
|
|
7164
7327
|
function resolve(s, resolvers) {
|
|
7165
|
-
if (typeof s === "undefined"
|
|
7166
|
-
return
|
|
7167
|
-
|
|
7168
|
-
if (
|
|
7169
|
-
return
|
|
7170
|
-
|
|
7328
|
+
if (typeof s === "undefined")
|
|
7329
|
+
return void 0;
|
|
7330
|
+
const str = typeof s === "string" ? s : s.toString();
|
|
7331
|
+
if (!resolvers)
|
|
7332
|
+
return str;
|
|
7333
|
+
if (hasProtocol(str, { acceptRelative: true, strict: false }))
|
|
7334
|
+
return resolvers.fixSlashes(str);
|
|
7335
|
+
return resolvers.canonicalUrlResolver(str);
|
|
7171
7336
|
}
|
|
7172
7337
|
function removeTrailingSlash(s) {
|
|
7173
7338
|
return s.replace(/\/(\?|#|$)/, "$1");
|
|
7174
7339
|
}
|
|
7175
7340
|
function preNormalizeEntry(_e, resolvers) {
|
|
7176
|
-
const
|
|
7177
|
-
if (
|
|
7178
|
-
|
|
7179
|
-
delete e.url;
|
|
7341
|
+
const input = typeof _e === "string" ? { loc: _e } : { ..._e };
|
|
7342
|
+
if (input.url && !input.loc) {
|
|
7343
|
+
input.loc = input.url;
|
|
7180
7344
|
}
|
|
7181
|
-
|
|
7182
|
-
|
|
7345
|
+
delete input.url;
|
|
7346
|
+
if (typeof input.loc !== "string") {
|
|
7347
|
+
input.loc = "";
|
|
7183
7348
|
}
|
|
7349
|
+
const skipEncoding = input._encoded === true;
|
|
7350
|
+
const e = input;
|
|
7184
7351
|
e.loc = removeTrailingSlash(e.loc);
|
|
7185
7352
|
e._abs = hasProtocol(e.loc, { acceptRelative: false, strict: false });
|
|
7186
7353
|
try {
|
|
7187
7354
|
e._path = e._abs ? parseURL(e.loc) : parsePath(e.loc);
|
|
7188
|
-
} catch
|
|
7189
|
-
|
|
7355
|
+
} catch {
|
|
7356
|
+
e._path = null;
|
|
7190
7357
|
}
|
|
7191
7358
|
if (e._path) {
|
|
7192
|
-
const
|
|
7193
|
-
const qs = stringifyQuery(
|
|
7194
|
-
e.
|
|
7359
|
+
const search = e._path.search;
|
|
7360
|
+
const qs = search && search.length > 1 ? stringifyQuery(parseQuery(search)) : "";
|
|
7361
|
+
const pathname = skipEncoding ? e._path.pathname : encodePath(e._path.pathname);
|
|
7362
|
+
e._relativeLoc = `${pathname}${qs.length ? `?${qs}` : ""}`;
|
|
7195
7363
|
if (e._path.host) {
|
|
7196
7364
|
e.loc = stringifyParsedURL(e._path);
|
|
7197
7365
|
} else {
|
|
7198
7366
|
e.loc = e._relativeLoc;
|
|
7199
7367
|
}
|
|
7200
|
-
} else if (!isEncoded(e.loc)) {
|
|
7368
|
+
} else if (!skipEncoding && !isEncoded(e.loc)) {
|
|
7201
7369
|
e.loc = encodeURI(e.loc);
|
|
7202
7370
|
}
|
|
7203
7371
|
if (e.loc === "")
|
|
@@ -7227,8 +7395,7 @@ function normaliseEntry(_e, defaults, resolvers) {
|
|
|
7227
7395
|
e.loc = resolve(e.loc, resolvers);
|
|
7228
7396
|
if (e.alternatives) {
|
|
7229
7397
|
const alternatives = e.alternatives.map((a) => ({ ...a }));
|
|
7230
|
-
for (
|
|
7231
|
-
const alt = alternatives[i];
|
|
7398
|
+
for (const alt of alternatives) {
|
|
7232
7399
|
if (typeof alt.href === "string") {
|
|
7233
7400
|
alt.href = resolve(alt.href, resolvers);
|
|
7234
7401
|
} else if (typeof alt.href === "object" && alt.href) {
|
|
@@ -7239,16 +7406,16 @@ function normaliseEntry(_e, defaults, resolvers) {
|
|
|
7239
7406
|
}
|
|
7240
7407
|
if (e.images) {
|
|
7241
7408
|
const images = e.images.map((i) => ({ ...i }));
|
|
7242
|
-
for (
|
|
7243
|
-
|
|
7409
|
+
for (const img of images) {
|
|
7410
|
+
img.loc = resolve(img.loc, resolvers);
|
|
7244
7411
|
}
|
|
7245
7412
|
e.images = mergeOnKey$1(images, "loc");
|
|
7246
7413
|
}
|
|
7247
7414
|
if (e.videos) {
|
|
7248
7415
|
const videos = e.videos.map((v) => ({ ...v }));
|
|
7249
|
-
for (
|
|
7250
|
-
if (
|
|
7251
|
-
|
|
7416
|
+
for (const video of videos) {
|
|
7417
|
+
if (video.content_loc) {
|
|
7418
|
+
video.content_loc = resolve(video.content_loc, resolvers);
|
|
7252
7419
|
}
|
|
7253
7420
|
}
|
|
7254
7421
|
e.videos = mergeOnKey$1(videos, "content_loc");
|
|
@@ -7266,8 +7433,9 @@ function isValidW3CDate(d) {
|
|
|
7266
7433
|
}
|
|
7267
7434
|
function normaliseDate(d) {
|
|
7268
7435
|
if (typeof d === "string") {
|
|
7269
|
-
|
|
7270
|
-
|
|
7436
|
+
const tIdx = d.indexOf("T");
|
|
7437
|
+
if (tIdx !== -1) {
|
|
7438
|
+
const t = d.slice(tIdx + 1);
|
|
7271
7439
|
if (!t.includes("+") && !t.includes("-") && !t.includes("Z")) {
|
|
7272
7440
|
d += "Z";
|
|
7273
7441
|
}
|
|
@@ -7350,197 +7518,113 @@ function escapeValueForXml(value) {
|
|
|
7350
7518
|
return value ? "yes" : "no";
|
|
7351
7519
|
return xmlEscape(String(value));
|
|
7352
7520
|
}
|
|
7521
|
+
const yesNo = (v) => v === "yes" || v === true ? "yes" : "no";
|
|
7353
7522
|
const URLSET_OPENING_TAG = '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd http://www.google.com/schemas/sitemap-image/1.1 http://www.google.com/schemas/sitemap-image/1.1/sitemap-image.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
|
|
7354
|
-
function buildUrlXml(url) {
|
|
7355
|
-
|
|
7356
|
-
|
|
7357
|
-
|
|
7358
|
-
|
|
7359
|
-
if (url.loc) {
|
|
7360
|
-
parts[partIndex++] = ` <loc>${escapeValueForXml(url.loc)}</loc>`;
|
|
7361
|
-
}
|
|
7362
|
-
if (url.lastmod) {
|
|
7363
|
-
parts[partIndex++] = ` <lastmod>${url.lastmod}</lastmod>`;
|
|
7364
|
-
}
|
|
7365
|
-
if (url.changefreq) {
|
|
7366
|
-
parts[partIndex++] = ` <changefreq>${url.changefreq}</changefreq>`;
|
|
7367
|
-
}
|
|
7523
|
+
function buildUrlXml(url, NL, I1, I2, I3, I4) {
|
|
7524
|
+
let xml = `${I1}<url>${NL}`;
|
|
7525
|
+
if (url.loc) xml += `${I2}<loc>${xmlEscape(url.loc)}</loc>${NL}`;
|
|
7526
|
+
if (url.lastmod) xml += `${I2}<lastmod>${url.lastmod}</lastmod>${NL}`;
|
|
7527
|
+
if (url.changefreq) xml += `${I2}<changefreq>${url.changefreq}</changefreq>${NL}`;
|
|
7368
7528
|
if (url.priority !== void 0) {
|
|
7369
|
-
const
|
|
7370
|
-
|
|
7371
|
-
|
|
7372
|
-
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
|
|
7376
|
-
|
|
7377
|
-
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7381
|
-
|
|
7382
|
-
|
|
7383
|
-
|
|
7384
|
-
|
|
7385
|
-
|
|
7386
|
-
|
|
7387
|
-
|
|
7388
|
-
|
|
7389
|
-
|
|
7390
|
-
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
|
|
7394
|
-
|
|
7395
|
-
|
|
7396
|
-
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
}
|
|
7411
|
-
if (video.player_loc) {
|
|
7412
|
-
const attrs = video.player_loc.allow_embed ? ' allow_embed="yes"' : "";
|
|
7413
|
-
const autoplay = video.player_loc.autoplay ? ' autoplay="yes"' : "";
|
|
7414
|
-
parts[partIndex++] = ` <video:player_loc${attrs}${autoplay}>${escapeValueForXml(video.player_loc)}</video:player_loc>`;
|
|
7415
|
-
}
|
|
7416
|
-
if (video.duration !== void 0) {
|
|
7417
|
-
parts[partIndex++] = ` <video:duration>${video.duration}</video:duration>`;
|
|
7418
|
-
}
|
|
7419
|
-
if (video.expiration_date) {
|
|
7420
|
-
parts[partIndex++] = ` <video:expiration_date>${video.expiration_date}</video:expiration_date>`;
|
|
7421
|
-
}
|
|
7422
|
-
if (video.rating !== void 0) {
|
|
7423
|
-
parts[partIndex++] = ` <video:rating>${video.rating}</video:rating>`;
|
|
7424
|
-
}
|
|
7425
|
-
if (video.view_count !== void 0) {
|
|
7426
|
-
parts[partIndex++] = ` <video:view_count>${video.view_count}</video:view_count>`;
|
|
7427
|
-
}
|
|
7428
|
-
if (video.publication_date) {
|
|
7429
|
-
parts[partIndex++] = ` <video:publication_date>${video.publication_date}</video:publication_date>`;
|
|
7430
|
-
}
|
|
7431
|
-
if (video.family_friendly !== void 0) {
|
|
7432
|
-
parts[partIndex++] = ` <video:family_friendly>${video.family_friendly === "yes" || video.family_friendly === true ? "yes" : "no"}</video:family_friendly>`;
|
|
7433
|
-
}
|
|
7434
|
-
if (video.restriction) {
|
|
7435
|
-
const relationship = video.restriction.relationship || "allow";
|
|
7436
|
-
parts[partIndex++] = ` <video:restriction relationship="${relationship}">${escapeValueForXml(video.restriction.restriction)}</video:restriction>`;
|
|
7437
|
-
}
|
|
7438
|
-
if (video.platform) {
|
|
7439
|
-
const relationship = video.platform.relationship || "allow";
|
|
7440
|
-
parts[partIndex++] = ` <video:platform relationship="${relationship}">${escapeValueForXml(video.platform.platform)}</video:platform>`;
|
|
7441
|
-
}
|
|
7442
|
-
if (video.requires_subscription !== void 0) {
|
|
7443
|
-
parts[partIndex++] = ` <video:requires_subscription>${video.requires_subscription === "yes" || video.requires_subscription === true ? "yes" : "no"}</video:requires_subscription>`;
|
|
7444
|
-
}
|
|
7445
|
-
if (video.price) {
|
|
7446
|
-
const prices = Array.isArray(video.price) ? video.price : [video.price];
|
|
7447
|
-
for (const price of prices) {
|
|
7448
|
-
const attrs = [];
|
|
7449
|
-
if (price.currency) attrs.push(`currency="${price.currency}"`);
|
|
7450
|
-
if (price.type) attrs.push(`type="${price.type}"`);
|
|
7451
|
-
const attrsStr = attrs.length > 0 ? " " + attrs.join(" ") : "";
|
|
7452
|
-
parts[partIndex++] = ` <video:price${attrsStr}>${escapeValueForXml(price.price)}</video:price>`;
|
|
7453
|
-
}
|
|
7454
|
-
}
|
|
7455
|
-
if (video.uploader) {
|
|
7456
|
-
const info = video.uploader.info ? ` info="${escapeValueForXml(video.uploader.info)}"` : "";
|
|
7457
|
-
parts[partIndex++] = ` <video:uploader${info}>${escapeValueForXml(video.uploader.uploader)}</video:uploader>`;
|
|
7458
|
-
}
|
|
7459
|
-
if (video.live !== void 0) {
|
|
7460
|
-
parts[partIndex++] = ` <video:live>${video.live === "yes" || video.live === true ? "yes" : "no"}</video:live>`;
|
|
7461
|
-
}
|
|
7462
|
-
if (video.tag) {
|
|
7463
|
-
const tags = Array.isArray(video.tag) ? video.tag : [video.tag];
|
|
7464
|
-
for (const tag of tags) {
|
|
7465
|
-
parts[partIndex++] = ` <video:tag>${escapeValueForXml(tag)}</video:tag>`;
|
|
7466
|
-
}
|
|
7467
|
-
}
|
|
7468
|
-
if (video.category) {
|
|
7469
|
-
parts[partIndex++] = ` <video:category>${escapeValueForXml(video.category)}</video:category>`;
|
|
7470
|
-
}
|
|
7471
|
-
if (video.gallery_loc) {
|
|
7472
|
-
const title = video.gallery_loc.title ? ` title="${escapeValueForXml(video.gallery_loc.title)}"` : "";
|
|
7473
|
-
parts[partIndex++] = ` <video:gallery_loc${title}>${escapeValueForXml(video.gallery_loc)}</video:gallery_loc>`;
|
|
7474
|
-
}
|
|
7475
|
-
parts[partIndex++] = " </video:video>";
|
|
7476
|
-
}
|
|
7477
|
-
}
|
|
7478
|
-
break;
|
|
7479
|
-
case "news":
|
|
7480
|
-
if (value) {
|
|
7481
|
-
parts[partIndex++] = " <news:news>";
|
|
7482
|
-
parts[partIndex++] = " <news:publication>";
|
|
7483
|
-
parts[partIndex++] = ` <news:name>${escapeValueForXml(value.publication.name)}</news:name>`;
|
|
7484
|
-
parts[partIndex++] = ` <news:language>${escapeValueForXml(value.publication.language)}</news:language>`;
|
|
7485
|
-
parts[partIndex++] = " </news:publication>";
|
|
7486
|
-
if (value.title) {
|
|
7487
|
-
parts[partIndex++] = ` <news:title>${escapeValueForXml(value.title)}</news:title>`;
|
|
7488
|
-
}
|
|
7489
|
-
if (value.publication_date) {
|
|
7490
|
-
parts[partIndex++] = ` <news:publication_date>${value.publication_date}</news:publication_date>`;
|
|
7491
|
-
}
|
|
7492
|
-
if (value.access) {
|
|
7493
|
-
parts[partIndex++] = ` <news:access>${value.access}</news:access>`;
|
|
7494
|
-
}
|
|
7495
|
-
if (value.genres) {
|
|
7496
|
-
parts[partIndex++] = ` <news:genres>${escapeValueForXml(value.genres)}</news:genres>`;
|
|
7497
|
-
}
|
|
7498
|
-
if (value.keywords) {
|
|
7499
|
-
parts[partIndex++] = ` <news:keywords>${escapeValueForXml(value.keywords)}</news:keywords>`;
|
|
7500
|
-
}
|
|
7501
|
-
if (value.stock_tickers) {
|
|
7502
|
-
parts[partIndex++] = ` <news:stock_tickers>${escapeValueForXml(value.stock_tickers)}</news:stock_tickers>`;
|
|
7503
|
-
}
|
|
7504
|
-
parts[partIndex++] = " </news:news>";
|
|
7529
|
+
const p = typeof url.priority === "number" ? url.priority : Number.parseFloat(url.priority);
|
|
7530
|
+
xml += `${I2}<priority>${p.toFixed(1)}</priority>${NL}`;
|
|
7531
|
+
}
|
|
7532
|
+
if (url.alternatives) {
|
|
7533
|
+
for (const alt of url.alternatives) {
|
|
7534
|
+
let attrs = "";
|
|
7535
|
+
for (const [k, v] of Object.entries(alt)) attrs += ` ${k}="${xmlEscape(String(v))}"`;
|
|
7536
|
+
xml += `${I2}<xhtml:link rel="alternate"${attrs} />${NL}`;
|
|
7537
|
+
}
|
|
7538
|
+
}
|
|
7539
|
+
if (url.images) {
|
|
7540
|
+
for (const img of url.images) {
|
|
7541
|
+
xml += `${I2}<image:image>${NL}${I3}<image:loc>${xmlEscape(img.loc)}</image:loc>${NL}`;
|
|
7542
|
+
if (img.title) xml += `${I3}<image:title>${xmlEscape(img.title)}</image:title>${NL}`;
|
|
7543
|
+
if (img.caption) xml += `${I3}<image:caption>${xmlEscape(img.caption)}</image:caption>${NL}`;
|
|
7544
|
+
if (img.geo_location) xml += `${I3}<image:geo_location>${xmlEscape(img.geo_location)}</image:geo_location>${NL}`;
|
|
7545
|
+
if (img.license) xml += `${I3}<image:license>${xmlEscape(img.license)}</image:license>${NL}`;
|
|
7546
|
+
xml += `${I2}</image:image>${NL}`;
|
|
7547
|
+
}
|
|
7548
|
+
}
|
|
7549
|
+
if (url.videos) {
|
|
7550
|
+
for (const video of url.videos) {
|
|
7551
|
+
xml += `${I2}<video:video>${NL}${I3}<video:title>${xmlEscape(video.title)}</video:title>${NL}`;
|
|
7552
|
+
if (video.thumbnail_loc) xml += `${I3}<video:thumbnail_loc>${xmlEscape(video.thumbnail_loc)}</video:thumbnail_loc>${NL}`;
|
|
7553
|
+
xml += `${I3}<video:description>${xmlEscape(video.description)}</video:description>${NL}`;
|
|
7554
|
+
if (video.content_loc) xml += `${I3}<video:content_loc>${xmlEscape(video.content_loc)}</video:content_loc>${NL}`;
|
|
7555
|
+
if (video.player_loc) xml += `${I3}<video:player_loc>${xmlEscape(video.player_loc)}</video:player_loc>${NL}`;
|
|
7556
|
+
if (video.duration !== void 0) xml += `${I3}<video:duration>${video.duration}</video:duration>${NL}`;
|
|
7557
|
+
if (video.expiration_date) xml += `${I3}<video:expiration_date>${video.expiration_date}</video:expiration_date>${NL}`;
|
|
7558
|
+
if (video.rating !== void 0) xml += `${I3}<video:rating>${video.rating}</video:rating>${NL}`;
|
|
7559
|
+
if (video.view_count !== void 0) xml += `${I3}<video:view_count>${video.view_count}</video:view_count>${NL}`;
|
|
7560
|
+
if (video.publication_date) xml += `${I3}<video:publication_date>${video.publication_date}</video:publication_date>${NL}`;
|
|
7561
|
+
if (video.family_friendly !== void 0) xml += `${I3}<video:family_friendly>${yesNo(video.family_friendly)}</video:family_friendly>${NL}`;
|
|
7562
|
+
if (video.restriction) xml += `${I3}<video:restriction relationship="${video.restriction.relationship || "allow"}">${xmlEscape(video.restriction.restriction)}</video:restriction>${NL}`;
|
|
7563
|
+
if (video.platform) xml += `${I3}<video:platform relationship="${video.platform.relationship || "allow"}">${xmlEscape(video.platform.platform)}</video:platform>${NL}`;
|
|
7564
|
+
if (video.requires_subscription !== void 0) xml += `${I3}<video:requires_subscription>${yesNo(video.requires_subscription)}</video:requires_subscription>${NL}`;
|
|
7565
|
+
if (video.price) {
|
|
7566
|
+
for (const price of video.price) {
|
|
7567
|
+
const c = price.currency ? ` currency="${price.currency}"` : "";
|
|
7568
|
+
const t = price.type ? ` type="${price.type}"` : "";
|
|
7569
|
+
xml += `${I3}<video:price${c}${t}>${xmlEscape(String(price.price ?? ""))}</video:price>${NL}`;
|
|
7505
7570
|
}
|
|
7506
|
-
|
|
7571
|
+
}
|
|
7572
|
+
if (video.uploader) {
|
|
7573
|
+
const info = video.uploader.info ? ` info="${xmlEscape(video.uploader.info)}"` : "";
|
|
7574
|
+
xml += `${I3}<video:uploader${info}>${xmlEscape(video.uploader.uploader)}</video:uploader>${NL}`;
|
|
7575
|
+
}
|
|
7576
|
+
if (video.live !== void 0) xml += `${I3}<video:live>${yesNo(video.live)}</video:live>${NL}`;
|
|
7577
|
+
if (video.tag) {
|
|
7578
|
+
const tags = Array.isArray(video.tag) ? video.tag : [video.tag];
|
|
7579
|
+
for (const t of tags) xml += `${I3}<video:tag>${xmlEscape(t)}</video:tag>${NL}`;
|
|
7580
|
+
}
|
|
7581
|
+
if (video.category) xml += `${I3}<video:category>${xmlEscape(video.category)}</video:category>${NL}`;
|
|
7582
|
+
if (video.gallery_loc) xml += `${I3}<video:gallery_loc>${xmlEscape(video.gallery_loc)}</video:gallery_loc>${NL}`;
|
|
7583
|
+
xml += `${I2}</video:video>${NL}`;
|
|
7507
7584
|
}
|
|
7508
7585
|
}
|
|
7509
|
-
|
|
7510
|
-
|
|
7586
|
+
if (url.news) {
|
|
7587
|
+
xml += `${I2}<news:news>${NL}${I3}<news:publication>${NL}`;
|
|
7588
|
+
xml += `${I4}<news:name>${xmlEscape(url.news.publication.name)}</news:name>${NL}`;
|
|
7589
|
+
xml += `${I4}<news:language>${xmlEscape(url.news.publication.language)}</news:language>${NL}`;
|
|
7590
|
+
xml += `${I3}</news:publication>${NL}`;
|
|
7591
|
+
if (url.news.title) xml += `${I3}<news:title>${xmlEscape(url.news.title)}</news:title>${NL}`;
|
|
7592
|
+
if (url.news.publication_date) xml += `${I3}<news:publication_date>${url.news.publication_date}</news:publication_date>${NL}`;
|
|
7593
|
+
xml += `${I2}</news:news>${NL}`;
|
|
7594
|
+
}
|
|
7595
|
+
xml += `${I1}</url>`;
|
|
7596
|
+
return xml;
|
|
7511
7597
|
}
|
|
7512
7598
|
function urlsToXml(urls, resolvers, { version, xsl, credits, minify }, errorInfo) {
|
|
7513
|
-
const estimatedSize = urls.length + 5;
|
|
7514
|
-
const xmlParts = Array.from({ length: estimatedSize });
|
|
7515
|
-
let partIndex = 0;
|
|
7516
7599
|
let xslHref = xsl ? resolvers.relativeBaseUrlResolver(xsl) : false;
|
|
7517
|
-
if (xslHref && errorInfo
|
|
7600
|
+
if (xslHref && errorInfo?.messages.length) {
|
|
7518
7601
|
xslHref = withQuery(xslHref, {
|
|
7519
7602
|
errors: "true",
|
|
7520
7603
|
error_messages: errorInfo.messages,
|
|
7521
7604
|
error_urls: errorInfo.urls
|
|
7522
7605
|
});
|
|
7523
7606
|
}
|
|
7524
|
-
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7528
|
-
|
|
7529
|
-
|
|
7607
|
+
const NL = minify ? "" : "\n";
|
|
7608
|
+
const I1 = minify ? "" : " ";
|
|
7609
|
+
const I2 = minify ? "" : " ";
|
|
7610
|
+
const I3 = minify ? "" : " ";
|
|
7611
|
+
const I4 = minify ? "" : " ";
|
|
7612
|
+
let xml = xslHref ? `<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="${escapeValueForXml(xslHref)}"?>${NL}` : `<?xml version="1.0" encoding="UTF-8"?>${NL}`;
|
|
7613
|
+
xml += URLSET_OPENING_TAG + NL;
|
|
7530
7614
|
for (const url of urls) {
|
|
7531
|
-
|
|
7615
|
+
xml += buildUrlXml(url, NL, I1, I2, I3, I4) + NL;
|
|
7532
7616
|
}
|
|
7533
|
-
|
|
7617
|
+
xml += "</urlset>";
|
|
7534
7618
|
if (credits) {
|
|
7535
|
-
|
|
7619
|
+
xml += `${NL}<!-- XML Sitemap generated by @nuxtjs/sitemap v${version} at ${(/* @__PURE__ */ new Date()).toISOString()} -->`;
|
|
7536
7620
|
}
|
|
7537
|
-
|
|
7538
|
-
if (minify) {
|
|
7539
|
-
return xmlContent.join("").replace(/(?<!<[^>]*)\s(?![^<]*>)/g, "");
|
|
7540
|
-
}
|
|
7541
|
-
return xmlContent.join("\n");
|
|
7621
|
+
return xml;
|
|
7542
7622
|
}
|
|
7543
7623
|
|
|
7624
|
+
function getPageKey(pathWithoutPrefix) {
|
|
7625
|
+
const stripped = pathWithoutPrefix[0] === "/" ? pathWithoutPrefix.slice(1) : pathWithoutPrefix;
|
|
7626
|
+
return stripped.endsWith("/index") ? stripped.slice(0, -6) || "index" : stripped || "index";
|
|
7627
|
+
}
|
|
7544
7628
|
function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
7545
7629
|
const {
|
|
7546
7630
|
autoI18n,
|
|
@@ -7557,10 +7641,16 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7557
7641
|
return e;
|
|
7558
7642
|
}).filter(Boolean);
|
|
7559
7643
|
let validI18nUrlsForTransform = [];
|
|
7560
|
-
let warnIncorrectI18nTransformUsage = false;
|
|
7561
7644
|
const withoutPrefixPaths = {};
|
|
7562
7645
|
if (autoI18n && autoI18n.strategy !== "no_prefix") {
|
|
7563
7646
|
const localeCodes = autoI18n.locales.map((l) => l.code);
|
|
7647
|
+
const localeByCode = new Map(autoI18n.locales.map((l) => [l.code, l]));
|
|
7648
|
+
const isPrefixStrategy = autoI18n.strategy === "prefix";
|
|
7649
|
+
const isPrefixExceptOrAndDefault = autoI18n.strategy === "prefix_and_default" || autoI18n.strategy === "prefix_except_default";
|
|
7650
|
+
const xDefaultAndLocales = [{ code: "x-default", _hreflang: "x-default" }, ...autoI18n.locales];
|
|
7651
|
+
const defaultLocale = autoI18n.defaultLocale;
|
|
7652
|
+
const hasPages = !!autoI18n.pages;
|
|
7653
|
+
const hasDifferentDomains = !!autoI18n.differentDomains;
|
|
7564
7654
|
validI18nUrlsForTransform = _urls.map((_e, i) => {
|
|
7565
7655
|
if (_e._abs)
|
|
7566
7656
|
return false;
|
|
@@ -7568,15 +7658,15 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7568
7658
|
let localeCode = split[0];
|
|
7569
7659
|
const pathWithoutPrefix = split[1];
|
|
7570
7660
|
if (!localeCode)
|
|
7571
|
-
localeCode =
|
|
7661
|
+
localeCode = defaultLocale;
|
|
7572
7662
|
const e = _e;
|
|
7573
7663
|
e._pathWithoutPrefix = pathWithoutPrefix;
|
|
7574
|
-
const locale =
|
|
7664
|
+
const locale = localeByCode.get(localeCode);
|
|
7575
7665
|
if (!locale)
|
|
7576
7666
|
return false;
|
|
7577
7667
|
e._locale = locale;
|
|
7578
7668
|
e._index = i;
|
|
7579
|
-
e._key = `${e._sitemap || ""}${e._path?.pathname || "/"}${e._path
|
|
7669
|
+
e._key = `${e._sitemap || ""}${e._path?.pathname || "/"}${e._path?.search || ""}`;
|
|
7580
7670
|
withoutPrefixPaths[pathWithoutPrefix] = withoutPrefixPaths[pathWithoutPrefix] || [];
|
|
7581
7671
|
if (!withoutPrefixPaths[pathWithoutPrefix].some((e2) => e2._locale.code === locale.code))
|
|
7582
7672
|
withoutPrefixPaths[pathWithoutPrefix].push(e);
|
|
@@ -7584,9 +7674,9 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7584
7674
|
}).filter(Boolean);
|
|
7585
7675
|
for (const e of validI18nUrlsForTransform) {
|
|
7586
7676
|
if (!e._i18nTransform && !e.alternatives?.length) {
|
|
7587
|
-
const alternatives = withoutPrefixPaths[e._pathWithoutPrefix].map((u) => {
|
|
7677
|
+
const alternatives = (withoutPrefixPaths[e._pathWithoutPrefix] || []).map((u) => {
|
|
7588
7678
|
const entries = [];
|
|
7589
|
-
if (u._locale.code ===
|
|
7679
|
+
if (u._locale.code === defaultLocale) {
|
|
7590
7680
|
entries.push({
|
|
7591
7681
|
href: u.loc,
|
|
7592
7682
|
hreflang: "x-default"
|
|
@@ -7594,7 +7684,7 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7594
7684
|
}
|
|
7595
7685
|
entries.push({
|
|
7596
7686
|
href: u.loc,
|
|
7597
|
-
hreflang: u._locale._hreflang ||
|
|
7687
|
+
hreflang: u._locale._hreflang || defaultLocale
|
|
7598
7688
|
});
|
|
7599
7689
|
return entries;
|
|
7600
7690
|
}).flat().filter(Boolean);
|
|
@@ -7602,14 +7692,11 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7602
7692
|
e.alternatives = alternatives;
|
|
7603
7693
|
} else if (e._i18nTransform) {
|
|
7604
7694
|
delete e._i18nTransform;
|
|
7605
|
-
if (
|
|
7606
|
-
|
|
7607
|
-
}
|
|
7608
|
-
if (autoI18n.differentDomains) {
|
|
7695
|
+
if (hasDifferentDomains) {
|
|
7696
|
+
const defLocale = localeByCode.get(defaultLocale);
|
|
7609
7697
|
e.alternatives = [
|
|
7610
7698
|
{
|
|
7611
|
-
|
|
7612
|
-
...autoI18n.locales.find((l) => [l.code, l.language].includes(autoI18n.defaultLocale)),
|
|
7699
|
+
...defLocale,
|
|
7613
7700
|
code: "x-default"
|
|
7614
7701
|
},
|
|
7615
7702
|
...autoI18n.locales.filter((l) => !!l.domain)
|
|
@@ -7620,68 +7707,53 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7620
7707
|
};
|
|
7621
7708
|
});
|
|
7622
7709
|
} else {
|
|
7710
|
+
const pageKey = hasPages ? getPageKey(e._pathWithoutPrefix) : "";
|
|
7711
|
+
const pageMappings = hasPages ? autoI18n.pages[pageKey] : void 0;
|
|
7712
|
+
const pathSearch = e._path?.search || "";
|
|
7713
|
+
const pathWithoutPrefix = e._pathWithoutPrefix;
|
|
7623
7714
|
for (const l of autoI18n.locales) {
|
|
7624
|
-
let loc =
|
|
7625
|
-
if (
|
|
7626
|
-
const
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7715
|
+
let loc = pathWithoutPrefix;
|
|
7716
|
+
if (hasPages && pageMappings && pageMappings[l.code] !== void 0) {
|
|
7717
|
+
const customPath = pageMappings[l.code];
|
|
7718
|
+
if (customPath === false)
|
|
7719
|
+
continue;
|
|
7720
|
+
if (typeof customPath === "string")
|
|
7721
|
+
loc = customPath[0] === "/" ? customPath : `/${customPath}`;
|
|
7722
|
+
} else if (!hasDifferentDomains && !(isPrefixExceptOrAndDefault && l.code === defaultLocale)) {
|
|
7723
|
+
loc = joinURL(`/${l.code}`, pathWithoutPrefix);
|
|
7724
|
+
}
|
|
7725
|
+
const _sitemap = isI18nMapped ? l._sitemap : void 0;
|
|
7726
|
+
const alternatives = [];
|
|
7727
|
+
for (const locale of xDefaultAndLocales) {
|
|
7728
|
+
const code = locale.code === "x-default" ? defaultLocale : locale.code;
|
|
7729
|
+
const isDefault = locale.code === "x-default" || locale.code === defaultLocale;
|
|
7730
|
+
let href = pathWithoutPrefix;
|
|
7731
|
+
if (hasPages && pageMappings && pageMappings[code] !== void 0) {
|
|
7732
|
+
const customPath = pageMappings[code];
|
|
7630
7733
|
if (customPath === false)
|
|
7631
7734
|
continue;
|
|
7632
7735
|
if (typeof customPath === "string")
|
|
7633
|
-
|
|
7634
|
-
} else if (
|
|
7635
|
-
|
|
7736
|
+
href = customPath[0] === "/" ? customPath : `/${customPath}`;
|
|
7737
|
+
} else if (isPrefixStrategy) {
|
|
7738
|
+
href = joinURL("/", code, pathWithoutPrefix);
|
|
7739
|
+
} else if (isPrefixExceptOrAndDefault && !isDefault) {
|
|
7740
|
+
href = joinURL("/", code, pathWithoutPrefix);
|
|
7636
7741
|
}
|
|
7637
|
-
|
|
7638
|
-
|
|
7639
|
-
|
|
7742
|
+
if (!filterPath(href))
|
|
7743
|
+
continue;
|
|
7744
|
+
alternatives.push({
|
|
7745
|
+
hreflang: locale._hreflang,
|
|
7746
|
+
href
|
|
7747
|
+
});
|
|
7640
7748
|
}
|
|
7641
|
-
const
|
|
7749
|
+
const { _index: _, ...rest } = e;
|
|
7642
7750
|
const newEntry = preNormalizeEntry({
|
|
7643
7751
|
_sitemap,
|
|
7644
|
-
...
|
|
7645
|
-
|
|
7646
|
-
_key: `${_sitemap || ""}${loc || "/"}${e._path.search}`,
|
|
7752
|
+
...rest,
|
|
7753
|
+
_key: `${_sitemap || ""}${loc || "/"}${pathSearch}`,
|
|
7647
7754
|
_locale: l,
|
|
7648
7755
|
loc,
|
|
7649
|
-
alternatives
|
|
7650
|
-
const code = locale.code === "x-default" ? autoI18n.defaultLocale : locale.code;
|
|
7651
|
-
const isDefault = locale.code === "x-default" || locale.code === autoI18n.defaultLocale;
|
|
7652
|
-
let href = e._pathWithoutPrefix;
|
|
7653
|
-
if (autoI18n.pages) {
|
|
7654
|
-
const pageKey = e._pathWithoutPrefix.replace(/^\//, "").replace(/\/index$/, "") || "index";
|
|
7655
|
-
const pageMappings = autoI18n.pages[pageKey];
|
|
7656
|
-
if (pageMappings && pageMappings[code] !== void 0) {
|
|
7657
|
-
const customPath = pageMappings[code];
|
|
7658
|
-
if (customPath === false)
|
|
7659
|
-
return false;
|
|
7660
|
-
if (typeof customPath === "string")
|
|
7661
|
-
href = customPath.startsWith("/") ? customPath : `/${customPath}`;
|
|
7662
|
-
} else if (autoI18n.strategy === "prefix") {
|
|
7663
|
-
href = joinURL("/", code, e._pathWithoutPrefix);
|
|
7664
|
-
} else if (["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy)) {
|
|
7665
|
-
if (!isDefault) {
|
|
7666
|
-
href = joinURL("/", code, e._pathWithoutPrefix);
|
|
7667
|
-
}
|
|
7668
|
-
}
|
|
7669
|
-
} else {
|
|
7670
|
-
if (autoI18n.strategy === "prefix") {
|
|
7671
|
-
href = joinURL("/", code, e._pathWithoutPrefix);
|
|
7672
|
-
} else if (["prefix_and_default", "prefix_except_default"].includes(autoI18n.strategy)) {
|
|
7673
|
-
if (!isDefault) {
|
|
7674
|
-
href = joinURL("/", code, e._pathWithoutPrefix);
|
|
7675
|
-
}
|
|
7676
|
-
}
|
|
7677
|
-
}
|
|
7678
|
-
if (!filterPath(href))
|
|
7679
|
-
return false;
|
|
7680
|
-
return {
|
|
7681
|
-
hreflang: locale._hreflang,
|
|
7682
|
-
href
|
|
7683
|
-
};
|
|
7684
|
-
}).filter(Boolean)
|
|
7756
|
+
alternatives
|
|
7685
7757
|
}, resolvers);
|
|
7686
7758
|
if (e._locale.code === newEntry._locale.code) {
|
|
7687
7759
|
_urls[e._index] = newEntry;
|
|
@@ -7694,15 +7766,12 @@ function resolveSitemapEntries(sitemap, urls, runtimeConfig, resolvers) {
|
|
|
7694
7766
|
}
|
|
7695
7767
|
if (isI18nMapped) {
|
|
7696
7768
|
e._sitemap = e._sitemap || e._locale._sitemap;
|
|
7697
|
-
e._key = `${e._sitemap || ""}${e.loc || "/"}${e._path
|
|
7769
|
+
e._key = `${e._sitemap || ""}${e.loc || "/"}${e._path?.search || ""}`;
|
|
7698
7770
|
}
|
|
7699
7771
|
if (e._index)
|
|
7700
7772
|
_urls[e._index] = e;
|
|
7701
7773
|
}
|
|
7702
7774
|
}
|
|
7703
|
-
if (warnIncorrectI18nTransformUsage) {
|
|
7704
|
-
logger.warn("You're using _i18nTransform with the `no_prefix` strategy. This will cause issues with the sitemap. Please remove the _i18nTransform flag or change i18n strategy.");
|
|
7705
|
-
}
|
|
7706
7775
|
return _urls;
|
|
7707
7776
|
}
|
|
7708
7777
|
async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
|
|
@@ -7717,15 +7786,16 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
|
|
|
7717
7786
|
// chunking
|
|
7718
7787
|
defaultSitemapsChunkSize
|
|
7719
7788
|
} = runtimeConfig;
|
|
7720
|
-
const
|
|
7789
|
+
const chunkSize = defaultSitemapsChunkSize || void 0;
|
|
7790
|
+
const chunkInfo = parseChunkInfo(sitemap.sitemapName, sitemaps, chunkSize);
|
|
7721
7791
|
function maybeSort(urls2) {
|
|
7722
7792
|
return sortEntries ? sortInPlace(urls2) : urls2;
|
|
7723
7793
|
}
|
|
7724
7794
|
function maybeSlice(urls2) {
|
|
7725
|
-
return sliceUrlsForChunk(urls2, sitemap.sitemapName, sitemaps,
|
|
7795
|
+
return sliceUrlsForChunk(urls2, sitemap.sitemapName, sitemaps, chunkSize);
|
|
7726
7796
|
}
|
|
7727
7797
|
if (autoI18n?.differentDomains) {
|
|
7728
|
-
const domain = autoI18n.locales.find((e) =>
|
|
7798
|
+
const domain = autoI18n.locales.find((e) => e.language === sitemap.sitemapName || e.code === sitemap.sitemapName)?.domain;
|
|
7729
7799
|
if (domain) {
|
|
7730
7800
|
const _tester = resolvers.canonicalUrlResolver;
|
|
7731
7801
|
resolvers.canonicalUrlResolver = (path) => resolveSitePath(path, {
|
|
@@ -7742,8 +7812,7 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
|
|
|
7742
7812
|
if (chunkInfo.isChunked && baseSitemapName !== sitemap.sitemapName && sitemaps[baseSitemapName]) {
|
|
7743
7813
|
effectiveSitemap = sitemaps[baseSitemapName];
|
|
7744
7814
|
}
|
|
7745
|
-
let sourcesInput = effectiveSitemap.includeAppSources ? await globalSitemapSources() :
|
|
7746
|
-
sourcesInput.push(...await childSitemapSources(effectiveSitemap));
|
|
7815
|
+
let sourcesInput = effectiveSitemap.includeAppSources ? [...await globalSitemapSources(), ...await childSitemapSources(effectiveSitemap)] : await childSitemapSources(effectiveSitemap);
|
|
7747
7816
|
if (nitro && resolvers.event) {
|
|
7748
7817
|
const ctx = {
|
|
7749
7818
|
event: resolvers.event,
|
|
@@ -7766,8 +7835,13 @@ async function buildSitemapUrls(sitemap, resolvers, runtimeConfig, nitro) {
|
|
|
7766
7835
|
await nitro?.hooks.callHook("sitemap:input", resolvedCtx);
|
|
7767
7836
|
const enhancedUrls = resolveSitemapEntries(sitemap, resolvedCtx.urls, { autoI18n, isI18nMapped }, resolvers);
|
|
7768
7837
|
const filteredUrls = enhancedUrls.filter((e) => {
|
|
7769
|
-
if (
|
|
7838
|
+
if (e._sitemap === false)
|
|
7839
|
+
return false;
|
|
7840
|
+
if (isMultiSitemap && e._sitemap && sitemap.sitemapName) {
|
|
7841
|
+
if (sitemap._isChunking)
|
|
7842
|
+
return sitemap.sitemapName.startsWith(e._sitemap + "-");
|
|
7770
7843
|
return e._sitemap === sitemap.sitemapName;
|
|
7844
|
+
}
|
|
7771
7845
|
return true;
|
|
7772
7846
|
});
|
|
7773
7847
|
const sortedUrls = maybeSort(filteredUrls);
|
|
@@ -7831,8 +7905,9 @@ async function buildSitemapXml(event, definition, resolvers, runtimeConfig) {
|
|
|
7831
7905
|
resolvedCtx.urls = resolvedCtx.urls.map((e) => preNormalizeEntry(e, resolvers));
|
|
7832
7906
|
}
|
|
7833
7907
|
const maybeSort = (urls2) => runtimeConfig.sortEntries ? sortInPlace(urls2) : urls2;
|
|
7834
|
-
const
|
|
7835
|
-
const
|
|
7908
|
+
const defaults = definition.defaults || {};
|
|
7909
|
+
const normalizedPreDedupe = resolvedCtx.urls.map((e) => normaliseEntry(e, defaults, resolvers));
|
|
7910
|
+
const urls = maybeSort(mergeOnKey$1(normalizedPreDedupe, "_key").map((e) => normaliseEntry(e, defaults, resolvers)));
|
|
7836
7911
|
if (definition._isChunking && definition.sitemapName.includes("-")) {
|
|
7837
7912
|
const parts = definition.sitemapName.split("-");
|
|
7838
7913
|
const lastPart = parts.pop();
|
|
@@ -7895,14 +7970,15 @@ async function createSitemap(event, definition, runtimeConfig) {
|
|
|
7895
7970
|
return xml;
|
|
7896
7971
|
}
|
|
7897
7972
|
|
|
7898
|
-
|
|
7973
|
+
async function sitemapXmlEventHandler(e) {
|
|
7899
7974
|
const runtimeConfig = useSitemapRuntimeConfig();
|
|
7900
7975
|
const { sitemaps } = runtimeConfig;
|
|
7901
|
-
if ("index" in sitemaps)
|
|
7976
|
+
if ("index" in sitemaps)
|
|
7902
7977
|
return sendRedirect(e, withBase("/sitemap_index.xml", useRuntimeConfig().app.baseURL), 302 );
|
|
7903
|
-
}
|
|
7904
7978
|
return createSitemap(e, Object.values(sitemaps)[0], runtimeConfig);
|
|
7905
|
-
}
|
|
7979
|
+
}
|
|
7980
|
+
|
|
7981
|
+
const _JukhrP = defineEventHandler(sitemapXmlEventHandler);
|
|
7906
7982
|
|
|
7907
7983
|
function defineRule(rule) {
|
|
7908
7984
|
return rule;
|
|
@@ -8151,7 +8227,7 @@ function RuleNoDocumentRelative() {
|
|
|
8151
8227
|
id: "no-baseless",
|
|
8152
8228
|
// TODO rename to no-document-relative
|
|
8153
8229
|
test({ link, fromPath, report }) {
|
|
8154
|
-
if (link.startsWith("/") || link.startsWith("http") || isNonFetchableLink(link))
|
|
8230
|
+
if (link.startsWith("#") || link.startsWith("/") || link.startsWith("http") || isNonFetchableLink(link))
|
|
8155
8231
|
return;
|
|
8156
8232
|
report({
|
|
8157
8233
|
name: "no-baseless",
|
|
@@ -8281,6 +8357,8 @@ function RuleNoNonAsciiChars() {
|
|
|
8281
8357
|
return defineRule({
|
|
8282
8358
|
id: "no-non-ascii-chars",
|
|
8283
8359
|
test({ link, url, report }) {
|
|
8360
|
+
if (link.startsWith("#"))
|
|
8361
|
+
return;
|
|
8284
8362
|
function test(s) {
|
|
8285
8363
|
if (/[^\u0020-\u007F]/.test(s)) {
|
|
8286
8364
|
report({
|
|
@@ -8325,6 +8403,8 @@ function RuleNoUppercaseChars() {
|
|
|
8325
8403
|
return defineRule({
|
|
8326
8404
|
id: "no-uppercase-chars",
|
|
8327
8405
|
test({ report, link }) {
|
|
8406
|
+
if (link.startsWith("#"))
|
|
8407
|
+
return;
|
|
8328
8408
|
if (link.match(/[A-Z]/)) {
|
|
8329
8409
|
report({
|
|
8330
8410
|
name: "no-uppercase-chars",
|
|
@@ -8491,7 +8571,7 @@ function isInternalRoute(path) {
|
|
|
8491
8571
|
const lastSegment = path.split("/").pop() || path;
|
|
8492
8572
|
return lastSegment.includes(".") || path.startsWith("/__") || path.startsWith("@");
|
|
8493
8573
|
}
|
|
8494
|
-
const
|
|
8574
|
+
const _uENAMR = defineEventHandler(async (e) => {
|
|
8495
8575
|
const { tasks, ids, path } = await readBody(e);
|
|
8496
8576
|
const runtimeConfig = useRuntimeConfig().public["nuxt-link-checker"] || {};
|
|
8497
8577
|
const partialCtx = {
|
|
@@ -8582,7 +8662,7 @@ const pagePaths = [
|
|
|
8582
8662
|
}
|
|
8583
8663
|
];
|
|
8584
8664
|
|
|
8585
|
-
const
|
|
8665
|
+
const _43IHEo = defineCachedEventHandler(async (e) => {
|
|
8586
8666
|
const runtimeConfig = useRuntimeConfig().public["nuxt-link-checker"] || {};
|
|
8587
8667
|
const linkDb = [
|
|
8588
8668
|
...pagePaths
|
|
@@ -8602,7 +8682,7 @@ const _rTmegy = defineCachedEventHandler(async (e) => {
|
|
|
8602
8682
|
// avoid thrashing
|
|
8603
8683
|
});
|
|
8604
8684
|
|
|
8605
|
-
const
|
|
8685
|
+
const _NwP4pF = defineEventHandler(async (e) => {
|
|
8606
8686
|
return {
|
|
8607
8687
|
runtimeConfig: useRuntimeConfig(e).public["nuxt-link-checker"]
|
|
8608
8688
|
};
|
|
@@ -8610,7 +8690,7 @@ const _NU4oGC = defineEventHandler(async (e) => {
|
|
|
8610
8690
|
|
|
8611
8691
|
const fileMapping = {};
|
|
8612
8692
|
|
|
8613
|
-
const
|
|
8693
|
+
const _FrFydN = defineEventHandler(async (e) => {
|
|
8614
8694
|
const path = parseURL(e.path).pathname;
|
|
8615
8695
|
if (fileMapping[path]) {
|
|
8616
8696
|
if (path.endsWith(".svg"))
|
|
@@ -8735,9 +8815,9 @@ defineCachedEventHandler(_cachedMessageLoader, {
|
|
|
8735
8815
|
swr: false,
|
|
8736
8816
|
getKey: (event) => [getRouterParam(event, "locale") ?? "null", getRouterParam(event, "hash") ?? "null"].join("-")
|
|
8737
8817
|
});
|
|
8738
|
-
const
|
|
8818
|
+
const _Lnfmd1 = _messagesHandler ;
|
|
8739
8819
|
|
|
8740
|
-
const
|
|
8820
|
+
const _Dc68hf = eventHandler(async (event) => {
|
|
8741
8821
|
const collection = getRouterParam(event, "collection");
|
|
8742
8822
|
setHeader(event, "Content-Type", "text/plain");
|
|
8743
8823
|
const data = await useStorage().getItem(`build:content:database.compressed.mjs`) || "";
|
|
@@ -9019,7 +9099,7 @@ function cleanupQuery(query, options = { removeString: false }) {
|
|
|
9019
9099
|
return result;
|
|
9020
9100
|
}
|
|
9021
9101
|
|
|
9022
|
-
const
|
|
9102
|
+
const _Unj2pu = eventHandler(async (event) => {
|
|
9023
9103
|
const { sql } = await readBody(event);
|
|
9024
9104
|
const collection = getRouterParam(event, "collection");
|
|
9025
9105
|
assertSafeQuery(sql, collection);
|
|
@@ -9030,7 +9110,7 @@ const _5WVRB1 = eventHandler(async (event) => {
|
|
|
9030
9110
|
return loadDatabaseAdapter(conf).all(sql);
|
|
9031
9111
|
});
|
|
9032
9112
|
|
|
9033
|
-
const
|
|
9113
|
+
const _Qnnu2J = lazyEventHandler(() => {
|
|
9034
9114
|
const opts = useRuntimeConfig().ipx || {};
|
|
9035
9115
|
const fsDir = opts?.fs?.dir ? (Array.isArray(opts.fs.dir) ? opts.fs.dir : [opts.fs.dir]).map((dir) => isAbsolute(dir) ? dir : fileURLToPath(new URL(dir, globalThis._importMeta_.url))) : void 0;
|
|
9036
9116
|
const fsStorage = opts.fs?.dir ? ipxFSStorage({ ...opts.fs, dir: fsDir }) : void 0;
|
|
@@ -9049,48 +9129,48 @@ const _6_zlrq = lazyEventHandler(() => {
|
|
|
9049
9129
|
});
|
|
9050
9130
|
|
|
9051
9131
|
const _lazy_u5Dhoc = () => Promise.resolve().then(function () { return neonTest$1; });
|
|
9052
|
-
const
|
|
9132
|
+
const _lazy_tJZ_5j = () => Promise.resolve().then(function () { return renderer$1; });
|
|
9053
9133
|
|
|
9054
9134
|
const handlers = [
|
|
9055
|
-
{ route: '', handler:
|
|
9135
|
+
{ route: '', handler: _aBJLZz, lazy: false, middleware: true, method: undefined },
|
|
9056
9136
|
{ route: '/api/neonTest', handler: _lazy_u5Dhoc, lazy: true, middleware: false, method: undefined },
|
|
9057
|
-
{ route: '/__nuxt_error', handler:
|
|
9137
|
+
{ route: '/__nuxt_error', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined },
|
|
9058
9138
|
{ route: '/__nuxt_island/**', handler: _SxA8c9, lazy: false, middleware: false, method: undefined },
|
|
9059
|
-
{ route: '', handler:
|
|
9060
|
-
{ route: '', handler:
|
|
9061
|
-
{ route: '', handler:
|
|
9062
|
-
{ route: '', handler:
|
|
9063
|
-
{ route: '', handler:
|
|
9064
|
-
{ route: '/api/_nuxt_icon/:collection', handler:
|
|
9065
|
-
{ route: '/api/_neon/raw', handler:
|
|
9066
|
-
{ route: '/api/_neon/count', handler:
|
|
9067
|
-
{ route: '/api/_neon/select', handler:
|
|
9068
|
-
{ route: '/api/_neon/insert', handler:
|
|
9069
|
-
{ route: '/api/_neon/update', handler:
|
|
9070
|
-
{ route: '/api/_neon/delete', handler:
|
|
9071
|
-
{ route: '/api/_auth/session', handler:
|
|
9072
|
-
{ route: '/api/_auth/session', handler:
|
|
9073
|
-
{ route: '', handler:
|
|
9074
|
-
{ route: '/__site-config__/debug.json', handler:
|
|
9075
|
-
{ route: '/robots.txt', handler:
|
|
9076
|
-
{ route: '', handler:
|
|
9077
|
-
{ route: '/__robots__/debug.json', handler:
|
|
9078
|
-
{ route: '/__robots__/debug-path.json', handler:
|
|
9079
|
-
{ route: '/__sitemap__/nuxt-content-urls.json', handler:
|
|
9080
|
-
{ route: '/__sitemap__/debug.json', handler:
|
|
9081
|
-
{ route: '/__sitemap__/style.xsl', handler:
|
|
9082
|
-
{ route: '/sitemap.xml', handler:
|
|
9083
|
-
{ route: '/__link-checker__/inspect', handler:
|
|
9084
|
-
{ route: '/__link-checker__/links', handler:
|
|
9085
|
-
{ route: '/__link-checker__/debug.json', handler:
|
|
9086
|
-
{ route: '', handler:
|
|
9087
|
-
{ route: '/_i18n/:hash/:locale/messages.json', handler:
|
|
9088
|
-
{ route: '/__nuxt_content/:collection/sql_dump.txt', handler:
|
|
9089
|
-
{ route: '/__nuxt_content/:collection/query', handler:
|
|
9090
|
-
{ route: '/_ipx/**', handler:
|
|
9091
|
-
{ route: '/_fonts/**', handler:
|
|
9092
|
-
{ route: '/_scripts/**', handler:
|
|
9093
|
-
{ route: '/**', handler:
|
|
9139
|
+
{ route: '', handler: _P5KhqA, lazy: false, middleware: false, method: undefined },
|
|
9140
|
+
{ route: '', handler: _uMfJTP, lazy: false, middleware: false, method: undefined },
|
|
9141
|
+
{ route: '', handler: _TjfwyU, lazy: false, middleware: false, method: undefined },
|
|
9142
|
+
{ route: '', handler: _3ipjNg, lazy: false, middleware: false, method: undefined },
|
|
9143
|
+
{ route: '', handler: _p1m2Kd, lazy: false, middleware: false, method: undefined },
|
|
9144
|
+
{ route: '/api/_nuxt_icon/:collection', handler: _s81vkT, lazy: false, middleware: false, method: undefined },
|
|
9145
|
+
{ route: '/api/_neon/raw', handler: _EjRxst, lazy: false, middleware: false, method: undefined },
|
|
9146
|
+
{ route: '/api/_neon/count', handler: _kaOIzd, lazy: false, middleware: false, method: undefined },
|
|
9147
|
+
{ route: '/api/_neon/select', handler: _KueSjI, lazy: false, middleware: false, method: undefined },
|
|
9148
|
+
{ route: '/api/_neon/insert', handler: _V0vCIz, lazy: false, middleware: false, method: undefined },
|
|
9149
|
+
{ route: '/api/_neon/update', handler: _UMOSGQ, lazy: false, middleware: false, method: undefined },
|
|
9150
|
+
{ route: '/api/_neon/delete', handler: _QLaobO, lazy: false, middleware: false, method: undefined },
|
|
9151
|
+
{ route: '/api/_auth/session', handler: _2_fp1a, lazy: false, middleware: false, method: "delete" },
|
|
9152
|
+
{ route: '/api/_auth/session', handler: _8YFWwD, lazy: false, middleware: false, method: "get" },
|
|
9153
|
+
{ route: '', handler: _GDEiau, lazy: false, middleware: true, method: undefined },
|
|
9154
|
+
{ route: '/__site-config__/debug.json', handler: _mIOHyL, lazy: false, middleware: false, method: undefined },
|
|
9155
|
+
{ route: '/robots.txt', handler: _Q9QB_M, lazy: false, middleware: false, method: undefined },
|
|
9156
|
+
{ route: '', handler: _OXTxFn, lazy: false, middleware: true, method: undefined },
|
|
9157
|
+
{ route: '/__robots__/debug.json', handler: _C_LEvw, lazy: false, middleware: false, method: undefined },
|
|
9158
|
+
{ route: '/__robots__/debug-path.json', handler: _zl1VW_, lazy: false, middleware: false, method: undefined },
|
|
9159
|
+
{ route: '/__sitemap__/nuxt-content-urls.json', handler: _W107Ad, lazy: false, middleware: false, method: undefined },
|
|
9160
|
+
{ route: '/__sitemap__/debug.json', handler: _V57sGR, lazy: false, middleware: false, method: undefined },
|
|
9161
|
+
{ route: '/__sitemap__/style.xsl', handler: _aOy17u, lazy: false, middleware: false, method: undefined },
|
|
9162
|
+
{ route: '/sitemap.xml', handler: _JukhrP, lazy: false, middleware: false, method: undefined },
|
|
9163
|
+
{ route: '/__link-checker__/inspect', handler: _uENAMR, lazy: false, middleware: false, method: undefined },
|
|
9164
|
+
{ route: '/__link-checker__/links', handler: _43IHEo, lazy: false, middleware: false, method: undefined },
|
|
9165
|
+
{ route: '/__link-checker__/debug.json', handler: _NwP4pF, lazy: false, middleware: false, method: undefined },
|
|
9166
|
+
{ route: '', handler: _FrFydN, lazy: false, middleware: true, method: undefined },
|
|
9167
|
+
{ route: '/_i18n/:hash/:locale/messages.json', handler: _Lnfmd1, lazy: false, middleware: false, method: undefined },
|
|
9168
|
+
{ route: '/__nuxt_content/:collection/sql_dump.txt', handler: _Dc68hf, lazy: false, middleware: false, method: undefined },
|
|
9169
|
+
{ route: '/__nuxt_content/:collection/query', handler: _Unj2pu, lazy: false, middleware: false, method: undefined },
|
|
9170
|
+
{ route: '/_ipx/**', handler: _Qnnu2J, lazy: false, middleware: false, method: undefined },
|
|
9171
|
+
{ route: '/_fonts/**', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined },
|
|
9172
|
+
{ route: '/_scripts/**', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined },
|
|
9173
|
+
{ route: '/**', handler: _lazy_tJZ_5j, lazy: true, middleware: false, method: undefined }
|
|
9094
9174
|
];
|
|
9095
9175
|
|
|
9096
9176
|
function createNitroApp() {
|
|
@@ -9395,14 +9475,6 @@ const styles$1 = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
|
|
|
9395
9475
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
9396
9476
|
|
|
9397
9477
|
const sources$1 = [
|
|
9398
|
-
{
|
|
9399
|
-
"context": {
|
|
9400
|
-
"name": "sitemap:urls",
|
|
9401
|
-
"description": "Set with the `sitemap.urls` config."
|
|
9402
|
-
},
|
|
9403
|
-
"urls": [],
|
|
9404
|
-
"sourceType": "user"
|
|
9405
|
-
},
|
|
9406
9478
|
{
|
|
9407
9479
|
"context": {
|
|
9408
9480
|
"name": "@nuxt/content@v3:urls",
|