nuxt-ignis 0.2.5 → 0.3.0
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/.nuxt/app.config.mjs +18 -0
- package/.nuxt/component-chunk.mjs +1 -0
- package/.nuxt/components.d.ts +190 -0
- package/.nuxt/dev/index.mjs +2948 -0
- package/.nuxt/dev/index.mjs.map +1 -0
- package/.nuxt/dist/server/client.manifest.json +18 -0
- package/.nuxt/dist/server/client.manifest.mjs +1 -0
- package/.nuxt/dist/server/server.mjs +1 -0
- package/.nuxt/eslint-typegen.d.ts +9401 -0
- package/.nuxt/eslint.config.d.mts +9 -0
- package/.nuxt/eslint.config.mjs +53 -0
- package/.nuxt/imports.d.ts +66 -0
- package/.nuxt/manifest/latest.json +1 -0
- package/.nuxt/manifest/meta/dev.json +1 -0
- package/.nuxt/modules/@nuxt-scripts.d.ts +13 -0
- package/.nuxt/nitro.json +17 -0
- package/.nuxt/nuxt-fonts-global.css +0 -0
- package/.nuxt/nuxt.d.ts +34 -0
- package/.nuxt/nuxt.json +9 -0
- package/.nuxt/schema/nuxt.schema.d.ts +17 -0
- package/.nuxt/schema/nuxt.schema.json +3 -0
- package/.nuxt/tsconfig.json +223 -0
- package/.nuxt/tsconfig.server.json +152 -0
- package/.nuxt/types/app-defaults.d.ts +7 -0
- package/.nuxt/types/app.config.d.ts +31 -0
- package/.nuxt/types/build.d.ts +25 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/imports.d.ts +829 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +143 -0
- package/.nuxt/types/nitro-middleware.d.ts +6 -0
- package/.nuxt/types/nitro-nuxt.d.ts +34 -0
- package/.nuxt/types/nitro-routes.d.ts +20 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +38 -0
- package/.nuxt/types/schema.d.ts +450 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/app.vue +16 -36
- package/assets/css/nuxt-ui.css +16 -0
- package/assets/css/tailwind.css +10 -44
- package/components/AppFeature.vue +47 -3
- package/components/AppFeatureList.vue +86 -26
- package/components/CurrentTime.vue +9 -9
- package/components/ignis/IgnisFooter.vue +16 -0
- package/components/ignis/IgnisHeader.vue +48 -0
- package/components/ignis/IgnisInfo.vue +26 -0
- package/composables/useTranslation.ts +11 -4
- package/content/second.md +4 -0
- package/features.ts +115 -17
- package/i18n/i18n.config.ts +2 -2
- package/{assets/lang → i18n/locales}/en.json +6 -1
- package/i18n/locales/es.json +4 -0
- package/nuxt.config.ts +26 -2
- package/package.json +70 -79
- package/pages/ignis.vue +3 -0
- package/pages/index.vue +1 -12
- package/tailwind.config.ts +2 -1
- package/utils/i18n-sources.ts +20 -2
- package/vueform.config.ts +20 -0
- package/.gitattributes +0 -2
- package/CHANGELOG.md +0 -72
- package/LICENSE +0 -21
- package/README.md +0 -147
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Generated by nitro
|
|
2
|
+
|
|
3
|
+
// App Config
|
|
4
|
+
import type { Defu } from 'defu'
|
|
5
|
+
|
|
6
|
+
import type { default as appConfig0 } from "../../app.config";
|
|
7
|
+
|
|
8
|
+
type UserAppConfig = Defu<{}, [typeof appConfig0]>
|
|
9
|
+
|
|
10
|
+
declare module "nitropack/types" {
|
|
11
|
+
interface AppConfig extends UserAppConfig {}
|
|
12
|
+
|
|
13
|
+
}
|
|
14
|
+
export {}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
declare global {
|
|
2
|
+
const __buildAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['buildAssetsURL']
|
|
3
|
+
const __publicAssetsURL: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths')['publicAssetsURL']
|
|
4
|
+
const appendCorsHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendCorsHeaders']
|
|
5
|
+
const appendCorsPreflightHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendCorsPreflightHeaders']
|
|
6
|
+
const appendHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendHeader']
|
|
7
|
+
const appendHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendHeaders']
|
|
8
|
+
const appendResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendResponseHeader']
|
|
9
|
+
const appendResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['appendResponseHeaders']
|
|
10
|
+
const assertMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['assertMethod']
|
|
11
|
+
const cachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['cachedEventHandler']
|
|
12
|
+
const cachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['cachedFunction']
|
|
13
|
+
const callNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['callNodeListener']
|
|
14
|
+
const clearResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['clearResponseHeaders']
|
|
15
|
+
const clearSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['clearSession']
|
|
16
|
+
const createApp: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createApp']
|
|
17
|
+
const createAppEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createAppEventHandler']
|
|
18
|
+
const createError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createError']
|
|
19
|
+
const createEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createEvent']
|
|
20
|
+
const createEventStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createEventStream']
|
|
21
|
+
const createRouter: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['createRouter']
|
|
22
|
+
const defaultContentType: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defaultContentType']
|
|
23
|
+
const defineAppConfig: typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/config')['defineAppConfig']
|
|
24
|
+
const defineCachedEventHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['defineCachedEventHandler']
|
|
25
|
+
const defineCachedFunction: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/cache')['defineCachedFunction']
|
|
26
|
+
const defineEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineEventHandler']
|
|
27
|
+
const defineLazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineLazyEventHandler']
|
|
28
|
+
const defineNitroErrorHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/error/utils')['defineNitroErrorHandler']
|
|
29
|
+
const defineNitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/plugin')['defineNitroPlugin']
|
|
30
|
+
const defineNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineNodeListener']
|
|
31
|
+
const defineNodeMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineNodeMiddleware']
|
|
32
|
+
const defineRenderHandler: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/renderer')['defineRenderHandler']
|
|
33
|
+
const defineRequestMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineRequestMiddleware']
|
|
34
|
+
const defineResponseMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineResponseMiddleware']
|
|
35
|
+
const defineRouteMeta: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/meta')['defineRouteMeta']
|
|
36
|
+
const defineTask: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/task')['defineTask']
|
|
37
|
+
const defineWebSocket: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineWebSocket']
|
|
38
|
+
const defineWebSocketHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['defineWebSocketHandler']
|
|
39
|
+
const defuReplaceArray: typeof import('../../node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/utils/merge')['defuReplaceArray']
|
|
40
|
+
const deleteCookie: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['deleteCookie']
|
|
41
|
+
const dynamicEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['dynamicEventHandler']
|
|
42
|
+
const eventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['eventHandler']
|
|
43
|
+
const fetchWithEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fetchWithEvent']
|
|
44
|
+
const fromNodeMiddleware: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromNodeMiddleware']
|
|
45
|
+
const fromPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromPlainHandler']
|
|
46
|
+
const fromWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['fromWebHandler']
|
|
47
|
+
const getCookie: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getCookie']
|
|
48
|
+
const getHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getHeader']
|
|
49
|
+
const getHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getHeaders']
|
|
50
|
+
const getMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getMethod']
|
|
51
|
+
const getProxyRequestHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getProxyRequestHeaders']
|
|
52
|
+
const getQuery: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getQuery']
|
|
53
|
+
const getRequestFingerprint: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestFingerprint']
|
|
54
|
+
const getRequestHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestHeader']
|
|
55
|
+
const getRequestHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestHeaders']
|
|
56
|
+
const getRequestHost: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestHost']
|
|
57
|
+
const getRequestIP: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestIP']
|
|
58
|
+
const getRequestPath: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestPath']
|
|
59
|
+
const getRequestProtocol: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestProtocol']
|
|
60
|
+
const getRequestURL: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestURL']
|
|
61
|
+
const getRequestWebStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRequestWebStream']
|
|
62
|
+
const getResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getResponseHeader']
|
|
63
|
+
const getResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getResponseHeaders']
|
|
64
|
+
const getResponseStatus: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getResponseStatus']
|
|
65
|
+
const getResponseStatusText: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getResponseStatusText']
|
|
66
|
+
const getRouteRules: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/route-rules')['getRouteRules']
|
|
67
|
+
const getRouterParam: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRouterParam']
|
|
68
|
+
const getRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getRouterParams']
|
|
69
|
+
const getSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getSession']
|
|
70
|
+
const getValidatedQuery: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getValidatedQuery']
|
|
71
|
+
const getValidatedRouterParams: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['getValidatedRouterParams']
|
|
72
|
+
const handleCacheHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['handleCacheHeaders']
|
|
73
|
+
const handleCors: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['handleCors']
|
|
74
|
+
const isCorsOriginAllowed: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isCorsOriginAllowed']
|
|
75
|
+
const isError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isError']
|
|
76
|
+
const isEvent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isEvent']
|
|
77
|
+
const isEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isEventHandler']
|
|
78
|
+
const isMethod: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isMethod']
|
|
79
|
+
const isPreflightRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isPreflightRequest']
|
|
80
|
+
const isStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isStream']
|
|
81
|
+
const isWebResponse: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['isWebResponse']
|
|
82
|
+
const lazyEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['lazyEventHandler']
|
|
83
|
+
const nitroPlugin: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/plugin')['nitroPlugin']
|
|
84
|
+
const parseCookies: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['parseCookies']
|
|
85
|
+
const promisifyNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['promisifyNodeListener']
|
|
86
|
+
const proxyRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['proxyRequest']
|
|
87
|
+
const readBody: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['readBody']
|
|
88
|
+
const readFormData: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['readFormData']
|
|
89
|
+
const readMultipartFormData: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['readMultipartFormData']
|
|
90
|
+
const readRawBody: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['readRawBody']
|
|
91
|
+
const readValidatedBody: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['readValidatedBody']
|
|
92
|
+
const removeResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['removeResponseHeader']
|
|
93
|
+
const runTask: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/task')['runTask']
|
|
94
|
+
const sanitizeStatusCode: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sanitizeStatusCode']
|
|
95
|
+
const sanitizeStatusMessage: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sanitizeStatusMessage']
|
|
96
|
+
const sealSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sealSession']
|
|
97
|
+
const send: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['send']
|
|
98
|
+
const sendError: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendError']
|
|
99
|
+
const sendIterable: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendIterable']
|
|
100
|
+
const sendNoContent: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendNoContent']
|
|
101
|
+
const sendProxy: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendProxy']
|
|
102
|
+
const sendRedirect: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendRedirect']
|
|
103
|
+
const sendStream: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendStream']
|
|
104
|
+
const sendWebResponse: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['sendWebResponse']
|
|
105
|
+
const serveStatic: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['serveStatic']
|
|
106
|
+
const setCookie: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setCookie']
|
|
107
|
+
const setHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setHeader']
|
|
108
|
+
const setHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setHeaders']
|
|
109
|
+
const setResponseHeader: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setResponseHeader']
|
|
110
|
+
const setResponseHeaders: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setResponseHeaders']
|
|
111
|
+
const setResponseStatus: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['setResponseStatus']
|
|
112
|
+
const splitCookiesString: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['splitCookiesString']
|
|
113
|
+
const toEventHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toEventHandler']
|
|
114
|
+
const toNodeListener: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toNodeListener']
|
|
115
|
+
const toPlainHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toPlainHandler']
|
|
116
|
+
const toWebHandler: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toWebHandler']
|
|
117
|
+
const toWebRequest: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['toWebRequest']
|
|
118
|
+
const unsealSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['unsealSession']
|
|
119
|
+
const updateSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['updateSession']
|
|
120
|
+
const useAppConfig: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/config')['useAppConfig']
|
|
121
|
+
const useBase: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['useBase']
|
|
122
|
+
const useEvent: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/context')['useEvent']
|
|
123
|
+
const useNitroApp: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/app')['useNitroApp']
|
|
124
|
+
const useRuntimeConfig: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/config')['useRuntimeConfig']
|
|
125
|
+
const useSession: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['useSession']
|
|
126
|
+
const useStorage: typeof import('../../node_modules/.pnpm/nitropack@2.11.12_@netlify+blobs@8.2.0_better-sqlite3@11.9.1/node_modules/nitropack/dist/runtime/internal/storage')['useStorage']
|
|
127
|
+
const writeEarlyHints: typeof import('../../node_modules/.pnpm/h3@1.15.3/node_modules/h3')['writeEarlyHints']
|
|
128
|
+
}
|
|
129
|
+
export { useNitroApp } from 'nitropack/runtime/internal/app';
|
|
130
|
+
export { useRuntimeConfig, useAppConfig } from 'nitropack/runtime/internal/config';
|
|
131
|
+
export { defineNitroPlugin, nitroPlugin } from 'nitropack/runtime/internal/plugin';
|
|
132
|
+
export { defineCachedFunction, defineCachedEventHandler, cachedFunction, cachedEventHandler } from 'nitropack/runtime/internal/cache';
|
|
133
|
+
export { useStorage } from 'nitropack/runtime/internal/storage';
|
|
134
|
+
export { defineRenderHandler } from 'nitropack/runtime/internal/renderer';
|
|
135
|
+
export { defineRouteMeta } from 'nitropack/runtime/internal/meta';
|
|
136
|
+
export { getRouteRules } from 'nitropack/runtime/internal/route-rules';
|
|
137
|
+
export { useEvent } from 'nitropack/runtime/internal/context';
|
|
138
|
+
export { defineTask, runTask } from 'nitropack/runtime/internal/task';
|
|
139
|
+
export { defineNitroErrorHandler } from 'nitropack/runtime/internal/error/utils';
|
|
140
|
+
export { appendCorsHeaders, appendCorsPreflightHeaders, appendHeader, appendHeaders, appendResponseHeader, appendResponseHeaders, assertMethod, callNodeListener, clearResponseHeaders, clearSession, createApp, createAppEventHandler, createError, createEvent, createEventStream, createRouter, defaultContentType, defineEventHandler, defineLazyEventHandler, defineNodeListener, defineNodeMiddleware, defineRequestMiddleware, defineResponseMiddleware, defineWebSocket, defineWebSocketHandler, deleteCookie, dynamicEventHandler, eventHandler, fetchWithEvent, fromNodeMiddleware, fromPlainHandler, fromWebHandler, getCookie, getHeader, getHeaders, getMethod, getProxyRequestHeaders, getQuery, getRequestFingerprint, getRequestHeader, getRequestHeaders, getRequestHost, getRequestIP, getRequestPath, getRequestProtocol, getRequestURL, getRequestWebStream, getResponseHeader, getResponseHeaders, getResponseStatus, getResponseStatusText, getRouterParam, getRouterParams, getSession, getValidatedQuery, getValidatedRouterParams, handleCacheHeaders, handleCors, isCorsOriginAllowed, isError, isEvent, isEventHandler, isMethod, isPreflightRequest, isStream, isWebResponse, lazyEventHandler, parseCookies, promisifyNodeListener, proxyRequest, readBody, readFormData, readMultipartFormData, readRawBody, readValidatedBody, removeResponseHeader, sanitizeStatusCode, sanitizeStatusMessage, sealSession, send, sendError, sendIterable, sendNoContent, sendProxy, sendRedirect, sendStream, sendWebResponse, serveStatic, setCookie, setHeader, setHeaders, setResponseHeader, setResponseHeaders, setResponseStatus, splitCookiesString, toEventHandler, toNodeListener, toPlainHandler, toWebHandler, toWebRequest, unsealSession, updateSession, useBase, useSession, writeEarlyHints } from 'h3';
|
|
141
|
+
export { buildAssetsURL as __buildAssetsURL, publicAssetsURL as __publicAssetsURL } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/paths';
|
|
142
|
+
export { defineAppConfig } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/utils/config';
|
|
143
|
+
export { defuReplaceArray } from 'C:/Git/nuxt-ignis/core/node_modules/.pnpm/nuxt-security@2.2.0_magicast@0.3.5_rollup@4.41.0/node_modules/nuxt-security/dist/utils/merge';
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
|
|
2
|
+
/// <reference path="nitro-middleware.d.ts" />
|
|
3
|
+
/// <reference path="./schema.d.ts" />
|
|
4
|
+
|
|
5
|
+
import type { RuntimeConfig } from 'nuxt/schema'
|
|
6
|
+
import type { H3Event } from 'h3'
|
|
7
|
+
import type { LogObject } from 'consola'
|
|
8
|
+
import type { NuxtIslandContext, NuxtIslandResponse, NuxtRenderHTMLContext } from 'nuxt/app'
|
|
9
|
+
|
|
10
|
+
declare module 'nitropack' {
|
|
11
|
+
interface NitroRuntimeConfigApp {
|
|
12
|
+
buildAssetsDir: string
|
|
13
|
+
cdnURL: string
|
|
14
|
+
}
|
|
15
|
+
interface NitroRuntimeConfig extends RuntimeConfig {}
|
|
16
|
+
interface NitroRouteConfig {
|
|
17
|
+
ssr?: boolean
|
|
18
|
+
noScripts?: boolean
|
|
19
|
+
/** @deprecated Use `noScripts` instead */
|
|
20
|
+
experimentalNoScripts?: boolean
|
|
21
|
+
}
|
|
22
|
+
interface NitroRouteRules {
|
|
23
|
+
ssr?: boolean
|
|
24
|
+
noScripts?: boolean
|
|
25
|
+
/** @deprecated Use `noScripts` instead */
|
|
26
|
+
experimentalNoScripts?: boolean
|
|
27
|
+
appMiddleware?: Record<string, boolean>
|
|
28
|
+
}
|
|
29
|
+
interface NitroRuntimeHooks {
|
|
30
|
+
'dev:ssr-logs': (ctx: { logs: LogObject[], path: string }) => void | Promise<void>
|
|
31
|
+
'render:html': (htmlContext: NuxtRenderHTMLContext, context: { event: H3Event }) => void | Promise<void>
|
|
32
|
+
'render:island': (islandResponse: NuxtIslandResponse, context: { event: H3Event, islandContext: NuxtIslandContext }) => void | Promise<void>
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Generated by nitro
|
|
2
|
+
import type { Serialize, Simplify } from "nitropack/types";
|
|
3
|
+
declare module "nitropack/types" {
|
|
4
|
+
type Awaited<T> = T extends PromiseLike<infer U> ? Awaited<U> : T
|
|
5
|
+
interface InternalApi {
|
|
6
|
+
'/api/neonTest': {
|
|
7
|
+
'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../server/api/neonTest').default>>>>
|
|
8
|
+
}
|
|
9
|
+
'/__nuxt_error': {
|
|
10
|
+
'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/core/runtime/nitro/handlers/renderer').default>>>>
|
|
11
|
+
}
|
|
12
|
+
'/__nuxt_island/**': {
|
|
13
|
+
'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../server/#internal/nuxt/island-renderer').default>>>>
|
|
14
|
+
}
|
|
15
|
+
'/_ipx/**': {
|
|
16
|
+
'default': Simplify<Serialize<Awaited<ReturnType<typeof import('../../node_modules/.pnpm/@nuxt+image@1.10.0_@netlify_b4a362fadc10aa100425ec080018ae5f/node_modules/@nuxt/image/dist/runtime/ipx').default>>>>
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
export {}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// Generated by Nuxt'
|
|
2
|
+
import type { Plugin } from '#app'
|
|
3
|
+
|
|
4
|
+
type Decorate<T extends Record<string, any>> = { [K in keyof T as K extends string ? `$${K}` : never]: T[K] }
|
|
5
|
+
|
|
6
|
+
type InjectionType<A extends Plugin> = A extends {default: Plugin<infer T>} ? Decorate<T> : unknown
|
|
7
|
+
|
|
8
|
+
type NuxtAppInjections =
|
|
9
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/dist/runtime/payload-plugin.js")> &
|
|
10
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/revive-payload.client.js")> &
|
|
11
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/head/runtime/plugins/unhead.js")> &
|
|
12
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/pages/runtime/plugins/router.js")> &
|
|
13
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/browser-devtools-timing.client.js")> &
|
|
14
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/navigation-repaint.client.js")> &
|
|
15
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/check-outdated-build.client.js")> &
|
|
16
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/revive-payload.server.js")> &
|
|
17
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/chunk-reload.client.js")> &
|
|
18
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@pinia+nuxt@0.11.0_magicast_a67d88851b9ae3b0828837d8cf9ec91f/node_modules/@pinia/nuxt/dist/runtime/plugin.vue3.js")> &
|
|
19
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/pages/runtime/plugins/prefetch.client.js")> &
|
|
20
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/pages/runtime/plugins/check-if-page-unused.js")> &
|
|
21
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_1dedbaa3bcdbced3d429534f9b1d1d28/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.server.js")> &
|
|
22
|
+
InjectionType<typeof import("../../node_modules/.pnpm/@nuxt+devtools@2.4.1_vite@6_1dedbaa3bcdbced3d429534f9b1d1d28/node_modules/@nuxt/devtools/dist/runtime/plugins/devtools.client.js")> &
|
|
23
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/dev-server-logs.js")> &
|
|
24
|
+
InjectionType<typeof import("../../node_modules/.pnpm/nuxt@3.17.4_@netlify+blobs@_a40ac8eff18b588ba9c9a272f06b10aa/node_modules/nuxt/dist/app/plugins/check-if-layout-used.js")>
|
|
25
|
+
|
|
26
|
+
declare module '#app' {
|
|
27
|
+
interface NuxtApp extends NuxtAppInjections { }
|
|
28
|
+
|
|
29
|
+
interface NuxtAppLiterals {
|
|
30
|
+
pluginName: 'vue-devtools-client' | 'nuxt:revive-payload:client' | 'nuxt:head' | 'nuxt:router' | 'nuxt:browser-devtools-timing' | 'nuxt:revive-payload:server' | 'nuxt:chunk-reload' | 'pinia' | 'nuxt:global-components' | 'nuxt:prefetch' | 'nuxt:checkIfPageUnused' | 'nuxt:checkIfLayoutUsed'
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
declare module 'vue' {
|
|
35
|
+
interface ComponentCustomProperties extends NuxtAppInjections { }
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export { }
|