@falcondev-oss/nuxt-layers-base 0.1.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 +317 -0
- package/.nuxt/components.d.ts +332 -0
- package/.nuxt/imports.d.ts +61 -0
- package/.nuxt/manifest/meta/24fb5e89-93fb-44cb-bbff-2a13f165c1e8.json +1 -0
- package/.nuxt/nuxt-icon-client-bundle.mjs +1 -0
- package/.nuxt/nuxt-icon-server-bundle.mjs +14 -0
- package/.nuxt/nuxt.d.ts +24 -0
- package/.nuxt/nuxt.node.d.ts +14 -0
- package/.nuxt/nuxt.shared.d.ts +5 -0
- package/.nuxt/schema/nuxt.schema.d.ts +210 -0
- package/.nuxt/schema/nuxt.schema.json +263 -0
- package/.nuxt/tsconfig.app.json +217 -0
- package/.nuxt/tsconfig.json +219 -0
- package/.nuxt/tsconfig.node.json +114 -0
- package/.nuxt/tsconfig.server.json +140 -0
- package/.nuxt/tsconfig.shared.json +139 -0
- package/.nuxt/types/app.config.d.ts +331 -0
- package/.nuxt/types/build.d.ts +24 -0
- package/.nuxt/types/builder-env.d.ts +1 -0
- package/.nuxt/types/components.d.ts +337 -0
- package/.nuxt/types/imports.d.ts +906 -0
- package/.nuxt/types/layouts.d.ts +7 -0
- package/.nuxt/types/middleware.d.ts +7 -0
- package/.nuxt/types/modules.d.ts +159 -0
- package/.nuxt/types/nitro-config.d.ts +14 -0
- package/.nuxt/types/nitro-imports.d.ts +141 -0
- package/.nuxt/types/nitro-middleware.d.ts +11 -0
- package/.nuxt/types/nitro-nuxt.d.ts +61 -0
- package/.nuxt/types/nitro-routes.d.ts +17 -0
- package/.nuxt/types/nitro.d.ts +3 -0
- package/.nuxt/types/plugins.d.ts +35 -0
- package/.nuxt/types/runtime-config.d.ts +36 -0
- package/.nuxt/types/ui.d.ts +36 -0
- package/.nuxt/types/vue-shim.d.ts +0 -0
- package/.nuxt/ui/accordion.ts +20 -0
- package/.nuxt/ui/alert.ts +264 -0
- package/.nuxt/ui/auth-form.ts +20 -0
- package/.nuxt/ui/avatar-group.ts +52 -0
- package/.nuxt/ui/avatar.ts +54 -0
- package/.nuxt/ui/badge.ts +263 -0
- package/.nuxt/ui/banner.ts +108 -0
- package/.nuxt/ui/blog-post.ts +143 -0
- package/.nuxt/ui/blog-posts.ts +9 -0
- package/.nuxt/ui/breadcrumb.ts +45 -0
- package/.nuxt/ui/button.ts +378 -0
- package/.nuxt/ui/calendar.ts +315 -0
- package/.nuxt/ui/card.ts +34 -0
- package/.nuxt/ui/carousel.ts +38 -0
- package/.nuxt/ui/changelog-version.ts +45 -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 +207 -0
- package/.nuxt/ui/checkbox.ts +237 -0
- package/.nuxt/ui/chip.ts +96 -0
- package/.nuxt/ui/collapsible.ts +6 -0
- package/.nuxt/ui/color-picker.ts +47 -0
- package/.nuxt/ui/command-palette.ts +62 -0
- package/.nuxt/ui/container.ts +3 -0
- package/.nuxt/ui/context-menu.ts +219 -0
- 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/drawer.ts +149 -0
- package/.nuxt/ui/dropdown-menu.ts +220 -0
- package/.nuxt/ui/editor-drag-handle.ts +6 -0
- package/.nuxt/ui/editor-emoji-menu.ts +35 -0
- package/.nuxt/ui/editor-mention-menu.ts +35 -0
- package/.nuxt/ui/editor-suggestion-menu.ts +35 -0
- package/.nuxt/ui/editor-toolbar.ts +21 -0
- package/.nuxt/ui/editor.ts +35 -0
- package/.nuxt/ui/empty.ts +83 -0
- package/.nuxt/ui/error.ts +9 -0
- package/.nuxt/ui/field-group.ts +16 -0
- package/.nuxt/ui/file-upload.ts +290 -0
- package/.nuxt/ui/footer-columns.ts +28 -0
- package/.nuxt/ui/footer.ts +11 -0
- package/.nuxt/ui/form-field.ts +62 -0
- package/.nuxt/ui/form.ts +3 -0
- package/.nuxt/ui/header.ts +25 -0
- package/.nuxt/ui/index.ts +109 -0
- package/.nuxt/ui/input-date.ts +337 -0
- package/.nuxt/ui/input-menu.ts +460 -0
- package/.nuxt/ui/input-number.ts +256 -0
- package/.nuxt/ui/input-tags.ts +310 -0
- package/.nuxt/ui/input-time.ts +336 -0
- package/.nuxt/ui/input.ts +289 -0
- package/.nuxt/ui/kbd.ts +195 -0
- package/.nuxt/ui/link.ts +22 -0
- package/.nuxt/ui/main.ts +3 -0
- package/.nuxt/ui/marquee.ts +66 -0
- package/.nuxt/ui/modal.ts +60 -0
- package/.nuxt/ui/navigation-menu.ts +512 -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 +274 -0
- package/.nuxt/ui/page-columns.ts +3 -0
- package/.nuxt/ui/page-cta.ts +70 -0
- package/.nuxt/ui/page-feature.ts +34 -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/pagination.ts +13 -0
- package/.nuxt/ui/pin-input.ts +171 -0
- package/.nuxt/ui/popover.ts +6 -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/progress.ts +297 -0
- package/.nuxt/ui/radio-group.ts +352 -0
- package/.nuxt/ui/scroll-area.ts +21 -0
- package/.nuxt/ui/select-menu.ts +361 -0
- package/.nuxt/ui/select.ts +348 -0
- package/.nuxt/ui/separator.ts +172 -0
- package/.nuxt/ui/skeleton.ts +3 -0
- package/.nuxt/ui/slideover.ts +132 -0
- package/.nuxt/ui/slider.ts +171 -0
- package/.nuxt/ui/stepper.ts +202 -0
- package/.nuxt/ui/switch.ts +132 -0
- package/.nuxt/ui/table.ts +162 -0
- package/.nuxt/ui/tabs.ts +258 -0
- package/.nuxt/ui/textarea.ts +294 -0
- package/.nuxt/ui/timeline.ts +321 -0
- package/.nuxt/ui/toast.ts +74 -0
- package/.nuxt/ui/toaster.ts +91 -0
- package/.nuxt/ui/tooltip.ts +9 -0
- package/.nuxt/ui/tree.ts +168 -0
- package/.nuxt/ui/user.ts +101 -0
- package/.nuxt/ui-image-component.ts +1 -0
- package/.nuxt/ui.css +154 -0
- package/app/app.config.ts +7 -0
- package/app/app.vue +3 -0
- package/app/assets/css/base.css +28 -0
- package/app/components/Var.vue +13 -0
- package/app/components/layout/LayoutDashboard.vue +102 -0
- package/app/components/overlay/modal/ModalActions.vue +25 -0
- package/app/components/overlay/modal/ModalConfirm.vue +25 -0
- package/app/components/overlay/modal/ModalRadioGroup.vue +37 -0
- package/app/components/u/UActions.vue +23 -0
- package/app/components/u/UCustomApp.vue +20 -0
- package/app/components/u/UField.vue +55 -0
- package/app/components/u/UImageWithFallback.vue +35 -0
- package/app/components/u/UInputDatePicker.vue +40 -0
- package/app/components/u/UInputDurationMinutes.vue +88 -0
- package/app/components/u/UTableCard.vue +16 -0
- package/app/composables/useConfirm.ts +16 -0
- package/app/composables/usePreventPageLeave.ts +31 -0
- package/app/composables/useRouteParamString.ts +22 -0
- package/app/composables/useTableColumns.tsx +68 -0
- package/app/composables/useToast.ts +40 -0
- package/app/composables/useTrpc.ts +3 -0
- package/app/error.vue +15 -0
- package/app/pages/index.vue +3 -0
- package/app/utils/form-field-translators.ts +41 -0
- package/app/utils/plugins.ts +95 -0
- package/app/utils/reactivity.ts +17 -0
- package/nuxt.config.ts +85 -0
- package/package.json +46 -0
- package/pnpm-workspace.yaml +5 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,317 @@
|
|
|
1
|
+
|
|
2
|
+
import { defuFn } from 'defu'
|
|
3
|
+
|
|
4
|
+
const inlineConfig = {
|
|
5
|
+
"nuxt": {},
|
|
6
|
+
"ui": {
|
|
7
|
+
"colors": {
|
|
8
|
+
"primary": "green",
|
|
9
|
+
"secondary": "blue",
|
|
10
|
+
"success": "green",
|
|
11
|
+
"info": "blue",
|
|
12
|
+
"warning": "yellow",
|
|
13
|
+
"error": "red",
|
|
14
|
+
"neutral": "slate"
|
|
15
|
+
},
|
|
16
|
+
"icons": {
|
|
17
|
+
"arrowDown": "i-lucide-arrow-down",
|
|
18
|
+
"arrowLeft": "i-lucide-arrow-left",
|
|
19
|
+
"arrowRight": "i-lucide-arrow-right",
|
|
20
|
+
"arrowUp": "i-lucide-arrow-up",
|
|
21
|
+
"caution": "i-lucide-circle-alert",
|
|
22
|
+
"check": "i-lucide-check",
|
|
23
|
+
"chevronDoubleLeft": "i-lucide-chevrons-left",
|
|
24
|
+
"chevronDoubleRight": "i-lucide-chevrons-right",
|
|
25
|
+
"chevronDown": "i-lucide-chevron-down",
|
|
26
|
+
"chevronLeft": "i-lucide-chevron-left",
|
|
27
|
+
"chevronRight": "i-lucide-chevron-right",
|
|
28
|
+
"chevronUp": "i-lucide-chevron-up",
|
|
29
|
+
"close": "i-lucide-x",
|
|
30
|
+
"copy": "i-lucide-copy",
|
|
31
|
+
"copyCheck": "i-lucide-copy-check",
|
|
32
|
+
"dark": "i-lucide-moon",
|
|
33
|
+
"drag": "i-lucide-grip-vertical",
|
|
34
|
+
"ellipsis": "i-lucide-ellipsis",
|
|
35
|
+
"error": "i-lucide-circle-x",
|
|
36
|
+
"external": "i-lucide-arrow-up-right",
|
|
37
|
+
"eye": "i-lucide-eye",
|
|
38
|
+
"eyeOff": "i-lucide-eye-off",
|
|
39
|
+
"file": "i-lucide-file",
|
|
40
|
+
"folder": "i-lucide-folder",
|
|
41
|
+
"folderOpen": "i-lucide-folder-open",
|
|
42
|
+
"hash": "i-lucide-hash",
|
|
43
|
+
"info": "i-lucide-info",
|
|
44
|
+
"light": "i-lucide-sun",
|
|
45
|
+
"loading": "i-lucide-loader-circle",
|
|
46
|
+
"menu": "i-lucide-menu",
|
|
47
|
+
"minus": "i-lucide-minus",
|
|
48
|
+
"panelClose": "i-lucide-panel-left-close",
|
|
49
|
+
"panelOpen": "i-lucide-panel-left-open",
|
|
50
|
+
"plus": "i-lucide-plus",
|
|
51
|
+
"reload": "i-lucide-rotate-ccw",
|
|
52
|
+
"search": "i-lucide-search",
|
|
53
|
+
"stop": "i-lucide-square",
|
|
54
|
+
"success": "i-lucide-circle-check",
|
|
55
|
+
"system": "i-lucide-monitor",
|
|
56
|
+
"tip": "i-lucide-lightbulb",
|
|
57
|
+
"upload": "i-lucide-upload",
|
|
58
|
+
"warning": "i-lucide-triangle-alert"
|
|
59
|
+
},
|
|
60
|
+
"tv": {
|
|
61
|
+
"twMergeConfig": {}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"icon": {
|
|
65
|
+
"provider": "server",
|
|
66
|
+
"class": "",
|
|
67
|
+
"aliases": {},
|
|
68
|
+
"iconifyApiEndpoint": "https://api.iconify.design",
|
|
69
|
+
"localApiEndpoint": "/_icons",
|
|
70
|
+
"fallbackToApi": true,
|
|
71
|
+
"cssSelectorPrefix": "i-",
|
|
72
|
+
"cssWherePseudo": true,
|
|
73
|
+
"cssLayer": "base",
|
|
74
|
+
"mode": "css",
|
|
75
|
+
"attrs": {
|
|
76
|
+
"aria-hidden": true
|
|
77
|
+
},
|
|
78
|
+
"collections": [
|
|
79
|
+
"academicons",
|
|
80
|
+
"akar-icons",
|
|
81
|
+
"ant-design",
|
|
82
|
+
"arcticons",
|
|
83
|
+
"basil",
|
|
84
|
+
"bi",
|
|
85
|
+
"bitcoin-icons",
|
|
86
|
+
"bpmn",
|
|
87
|
+
"brandico",
|
|
88
|
+
"bx",
|
|
89
|
+
"bxl",
|
|
90
|
+
"bxs",
|
|
91
|
+
"bytesize",
|
|
92
|
+
"carbon",
|
|
93
|
+
"catppuccin",
|
|
94
|
+
"cbi",
|
|
95
|
+
"charm",
|
|
96
|
+
"ci",
|
|
97
|
+
"cib",
|
|
98
|
+
"cif",
|
|
99
|
+
"cil",
|
|
100
|
+
"circle-flags",
|
|
101
|
+
"circum",
|
|
102
|
+
"clarity",
|
|
103
|
+
"codex",
|
|
104
|
+
"codicon",
|
|
105
|
+
"covid",
|
|
106
|
+
"cryptocurrency",
|
|
107
|
+
"cryptocurrency-color",
|
|
108
|
+
"cuida",
|
|
109
|
+
"dashicons",
|
|
110
|
+
"devicon",
|
|
111
|
+
"devicon-plain",
|
|
112
|
+
"dinkie-icons",
|
|
113
|
+
"duo-icons",
|
|
114
|
+
"ei",
|
|
115
|
+
"el",
|
|
116
|
+
"emojione",
|
|
117
|
+
"emojione-monotone",
|
|
118
|
+
"emojione-v1",
|
|
119
|
+
"entypo",
|
|
120
|
+
"entypo-social",
|
|
121
|
+
"eos-icons",
|
|
122
|
+
"ep",
|
|
123
|
+
"et",
|
|
124
|
+
"eva",
|
|
125
|
+
"f7",
|
|
126
|
+
"fa",
|
|
127
|
+
"fa-brands",
|
|
128
|
+
"fa-regular",
|
|
129
|
+
"fa-solid",
|
|
130
|
+
"fa6-brands",
|
|
131
|
+
"fa6-regular",
|
|
132
|
+
"fa6-solid",
|
|
133
|
+
"fa7-brands",
|
|
134
|
+
"fa7-regular",
|
|
135
|
+
"fa7-solid",
|
|
136
|
+
"fad",
|
|
137
|
+
"famicons",
|
|
138
|
+
"fe",
|
|
139
|
+
"feather",
|
|
140
|
+
"file-icons",
|
|
141
|
+
"flag",
|
|
142
|
+
"flagpack",
|
|
143
|
+
"flat-color-icons",
|
|
144
|
+
"flat-ui",
|
|
145
|
+
"flowbite",
|
|
146
|
+
"fluent",
|
|
147
|
+
"fluent-color",
|
|
148
|
+
"fluent-emoji",
|
|
149
|
+
"fluent-emoji-flat",
|
|
150
|
+
"fluent-emoji-high-contrast",
|
|
151
|
+
"fluent-mdl2",
|
|
152
|
+
"fontelico",
|
|
153
|
+
"fontisto",
|
|
154
|
+
"formkit",
|
|
155
|
+
"foundation",
|
|
156
|
+
"fxemoji",
|
|
157
|
+
"gala",
|
|
158
|
+
"game-icons",
|
|
159
|
+
"garden",
|
|
160
|
+
"geo",
|
|
161
|
+
"gg",
|
|
162
|
+
"gis",
|
|
163
|
+
"gravity-ui",
|
|
164
|
+
"gridicons",
|
|
165
|
+
"grommet-icons",
|
|
166
|
+
"guidance",
|
|
167
|
+
"healthicons",
|
|
168
|
+
"heroicons",
|
|
169
|
+
"heroicons-outline",
|
|
170
|
+
"heroicons-solid",
|
|
171
|
+
"hugeicons",
|
|
172
|
+
"humbleicons",
|
|
173
|
+
"ic",
|
|
174
|
+
"icomoon-free",
|
|
175
|
+
"icon-park",
|
|
176
|
+
"icon-park-outline",
|
|
177
|
+
"icon-park-solid",
|
|
178
|
+
"icon-park-twotone",
|
|
179
|
+
"iconamoon",
|
|
180
|
+
"iconoir",
|
|
181
|
+
"icons8",
|
|
182
|
+
"il",
|
|
183
|
+
"ion",
|
|
184
|
+
"iwwa",
|
|
185
|
+
"ix",
|
|
186
|
+
"jam",
|
|
187
|
+
"la",
|
|
188
|
+
"lets-icons",
|
|
189
|
+
"line-md",
|
|
190
|
+
"lineicons",
|
|
191
|
+
"logos",
|
|
192
|
+
"ls",
|
|
193
|
+
"lsicon",
|
|
194
|
+
"lucide",
|
|
195
|
+
"lucide-lab",
|
|
196
|
+
"mage",
|
|
197
|
+
"majesticons",
|
|
198
|
+
"maki",
|
|
199
|
+
"map",
|
|
200
|
+
"marketeq",
|
|
201
|
+
"material-icon-theme",
|
|
202
|
+
"material-symbols",
|
|
203
|
+
"material-symbols-light",
|
|
204
|
+
"mdi",
|
|
205
|
+
"mdi-light",
|
|
206
|
+
"medical-icon",
|
|
207
|
+
"memory",
|
|
208
|
+
"meteocons",
|
|
209
|
+
"meteor-icons",
|
|
210
|
+
"mi",
|
|
211
|
+
"mingcute",
|
|
212
|
+
"mono-icons",
|
|
213
|
+
"mynaui",
|
|
214
|
+
"nimbus",
|
|
215
|
+
"nonicons",
|
|
216
|
+
"noto",
|
|
217
|
+
"noto-v1",
|
|
218
|
+
"nrk",
|
|
219
|
+
"octicon",
|
|
220
|
+
"oi",
|
|
221
|
+
"ooui",
|
|
222
|
+
"openmoji",
|
|
223
|
+
"oui",
|
|
224
|
+
"pajamas",
|
|
225
|
+
"pepicons",
|
|
226
|
+
"pepicons-pencil",
|
|
227
|
+
"pepicons-pop",
|
|
228
|
+
"pepicons-print",
|
|
229
|
+
"ph",
|
|
230
|
+
"picon",
|
|
231
|
+
"pixel",
|
|
232
|
+
"pixelarticons",
|
|
233
|
+
"prime",
|
|
234
|
+
"proicons",
|
|
235
|
+
"ps",
|
|
236
|
+
"qlementine-icons",
|
|
237
|
+
"quill",
|
|
238
|
+
"radix-icons",
|
|
239
|
+
"raphael",
|
|
240
|
+
"ri",
|
|
241
|
+
"rivet-icons",
|
|
242
|
+
"roentgen",
|
|
243
|
+
"si",
|
|
244
|
+
"si-glyph",
|
|
245
|
+
"sidekickicons",
|
|
246
|
+
"simple-icons",
|
|
247
|
+
"simple-line-icons",
|
|
248
|
+
"skill-icons",
|
|
249
|
+
"solar",
|
|
250
|
+
"stash",
|
|
251
|
+
"streamline",
|
|
252
|
+
"streamline-block",
|
|
253
|
+
"streamline-color",
|
|
254
|
+
"streamline-cyber",
|
|
255
|
+
"streamline-cyber-color",
|
|
256
|
+
"streamline-emojis",
|
|
257
|
+
"streamline-flex",
|
|
258
|
+
"streamline-flex-color",
|
|
259
|
+
"streamline-freehand",
|
|
260
|
+
"streamline-freehand-color",
|
|
261
|
+
"streamline-kameleon-color",
|
|
262
|
+
"streamline-logos",
|
|
263
|
+
"streamline-pixel",
|
|
264
|
+
"streamline-plump",
|
|
265
|
+
"streamline-plump-color",
|
|
266
|
+
"streamline-sharp",
|
|
267
|
+
"streamline-sharp-color",
|
|
268
|
+
"streamline-stickies-color",
|
|
269
|
+
"streamline-ultimate",
|
|
270
|
+
"streamline-ultimate-color",
|
|
271
|
+
"subway",
|
|
272
|
+
"svg-spinners",
|
|
273
|
+
"system-uicons",
|
|
274
|
+
"tabler",
|
|
275
|
+
"tdesign",
|
|
276
|
+
"teenyicons",
|
|
277
|
+
"temaki",
|
|
278
|
+
"token",
|
|
279
|
+
"token-branded",
|
|
280
|
+
"topcoat",
|
|
281
|
+
"twemoji",
|
|
282
|
+
"typcn",
|
|
283
|
+
"uil",
|
|
284
|
+
"uim",
|
|
285
|
+
"uis",
|
|
286
|
+
"uit",
|
|
287
|
+
"uiw",
|
|
288
|
+
"unjs",
|
|
289
|
+
"vaadin",
|
|
290
|
+
"vs",
|
|
291
|
+
"vscode-icons",
|
|
292
|
+
"websymbol",
|
|
293
|
+
"weui",
|
|
294
|
+
"whh",
|
|
295
|
+
"wi",
|
|
296
|
+
"wpf",
|
|
297
|
+
"zmdi",
|
|
298
|
+
"zondicons"
|
|
299
|
+
],
|
|
300
|
+
"fetchTimeout": 1500
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
/** client **/
|
|
305
|
+
import { _replaceAppConfig } from '#app/config'
|
|
306
|
+
|
|
307
|
+
// Vite - webpack is handled directly in #app/config
|
|
308
|
+
if (import.meta.dev && !import.meta.nitro && import.meta.hot) {
|
|
309
|
+
import.meta.hot.accept((newModule) => {
|
|
310
|
+
_replaceAppConfig(newModule.default)
|
|
311
|
+
})
|
|
312
|
+
}
|
|
313
|
+
/** client-end **/
|
|
314
|
+
|
|
315
|
+
import cfg0 from "/Users/louis/CodingProjects/falcondev-oss/nuxt-layers/base/app/app.config.ts"
|
|
316
|
+
|
|
317
|
+
export default /*@__PURE__*/ defuFn(cfg0, inlineConfig)
|