@nuxt/devtools 0.1.3 → 0.1.4
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/README.md +1 -1
- package/dist/chunks/module-main.mjs +1 -1
- package/dist/chunks/vscode.mjs +2 -2
- package/dist/cli.mjs +7 -3
- package/dist/client/200.html +2 -2
- package/dist/client/404.html +2 -2
- package/dist/client/__inspecting/index.html +2 -2
- package/dist/client/_nuxt/{entry.fad9213c.js → entry.72ee2736.js} +1 -1
- package/dist/client/_nuxt/{overview.ce599b13.js → overview.c0a9db52.js} +1 -1
- package/dist/client/index.html +2 -2
- package/dist/client/modules/components/index.html +2 -2
- package/dist/client/modules/hooks/index.html +2 -2
- package/dist/client/modules/imports/index.html +2 -2
- package/dist/client/modules/layouts/index.html +2 -2
- package/dist/client/modules/middleware/index.html +2 -2
- package/dist/client/modules/modules/index.html +2 -2
- package/dist/client/modules/overview/index.html +2 -2
- package/dist/client/modules/pages/index.html +2 -2
- package/dist/client/modules/payload/index.html +2 -2
- package/dist/client/modules/plugins/index.html +2 -2
- package/dist/client/modules/runtime-configs/index.html +2 -2
- package/dist/client/modules/server-routes/index.html +2 -2
- package/dist/client/modules/virtual-files/index.html +2 -2
- package/dist/module.json +1 -1
- package/dist/shared/{devtools.c43ddaa5.mjs → devtools.b5fb0de8.mjs} +1 -1
- package/package.json +16 -17
package/README.md
CHANGED
|
@@ -256,7 +256,7 @@ const router = computed(() => devtoolsClient.value?.host?.nuxt.vueApp.config.glo
|
|
|
256
256
|
### Examples
|
|
257
257
|
|
|
258
258
|
- Built-in VS Code integration with lazy initialize: https://github.com/nuxt/devtools/blob/main/src/integrations/vscode.ts.
|
|
259
|
-
- VueUse adds a docs tab: https://github.com/vueuse/vueuse/blob/
|
|
259
|
+
- VueUse adds a docs tab: https://github.com/vueuse/vueuse/blob/ce28cef154489c73abe308104bef8568594a9bcd/packages/nuxt/index.ts#L89-L99.
|
|
260
260
|
- UnoCSS Inspector: https://github.com/unocss/unocss/blob/25021a751494e99e85cfd82cca3855cdf78f6a12/packages/nuxt/src/index.ts#L81-L94
|
|
261
261
|
- Nuxt Vitest runner: https://github.com/danielroe/nuxt-vitest/blob/7bac68d96f27dea6c30c198b7caaaf0b495574ab/packages/nuxt-vitest/src/module.ts#L139-L181
|
|
262
262
|
- Nuxt OG Image Playground: https://github.com/harlan-zw/nuxt-og-image/blob/main/src/module.ts#L136
|
|
@@ -15,7 +15,7 @@ import require$$0$4 from 'url';
|
|
|
15
15
|
import * as qs from 'querystring';
|
|
16
16
|
import require$$0$5 from 'tty';
|
|
17
17
|
import { i as isInstalledGlobally } from '../shared/devtools.cce722d0.mjs';
|
|
18
|
-
import { v as version } from '../shared/devtools.
|
|
18
|
+
import { v as version } from '../shared/devtools.b5fb0de8.mjs';
|
|
19
19
|
import { createBirpcGroup } from 'birpc';
|
|
20
20
|
import { resolvePreset } from 'unimport';
|
|
21
21
|
import { join as join$1, dirname, resolve as resolve$1 } from 'pathe';
|
package/dist/chunks/vscode.mjs
CHANGED
|
@@ -22,7 +22,7 @@ import 'events';
|
|
|
22
22
|
import 'querystring';
|
|
23
23
|
import '../shared/devtools.cce722d0.mjs';
|
|
24
24
|
import '../shared/devtools.38b2468f.mjs';
|
|
25
|
-
import '../shared/devtools.
|
|
25
|
+
import '../shared/devtools.b5fb0de8.mjs';
|
|
26
26
|
import 'birpc';
|
|
27
27
|
import 'unimport';
|
|
28
28
|
import 'pathe';
|
|
@@ -41636,7 +41636,7 @@ async function setup(nuxt, _functions, options) {
|
|
|
41636
41636
|
title: "Install VS Code Server",
|
|
41637
41637
|
description: `It seems you don't have code-server installed.
|
|
41638
41638
|
|
|
41639
|
-
Learn more about it with <a href="https://code.visualstudio.com/
|
|
41639
|
+
Learn more about it with <a href="https://code.visualstudio.com/blogs/2022/07/07/vscode-server" target="_blank">this guide</a>.
|
|
41640
41640
|
Once installed, restart Nuxt and visit this tab again.`,
|
|
41641
41641
|
actions: []
|
|
41642
41642
|
} : !loaded ? {
|
package/dist/cli.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { execa } from 'execa';
|
|
|
5
5
|
import { readUser, writeUser } from 'rc9';
|
|
6
6
|
import { g as globalDirs } from './shared/devtools.38b2468f.mjs';
|
|
7
7
|
import { resolve } from 'pathe';
|
|
8
|
-
import { n as name } from './shared/devtools.
|
|
8
|
+
import { n as name } from './shared/devtools.b5fb0de8.mjs';
|
|
9
9
|
import 'path';
|
|
10
10
|
|
|
11
11
|
const RC_PATH = ".nuxtrc";
|
|
@@ -15,10 +15,12 @@ function enable(path, modulePath) {
|
|
|
15
15
|
const esmPath = resolve(modulePath, "dist", "module.mjs");
|
|
16
16
|
const cjsPath = resolve(modulePath, "module.cjs");
|
|
17
17
|
const removePaths = [
|
|
18
|
+
modulePath,
|
|
18
19
|
esmPath
|
|
19
20
|
];
|
|
20
21
|
if (require$$1.platform() === "win32") {
|
|
21
22
|
removePaths.push(
|
|
23
|
+
modulePath.replace(/\\/g, "/"),
|
|
22
24
|
esmPath.replace(/\\/g, "/"),
|
|
23
25
|
cjsPath
|
|
24
26
|
);
|
|
@@ -34,8 +36,8 @@ function enable(path, modulePath) {
|
|
|
34
36
|
return result;
|
|
35
37
|
});
|
|
36
38
|
}
|
|
37
|
-
if (!rc.modules?.includes(
|
|
38
|
-
rc.modules = [...rc.modules || [],
|
|
39
|
+
if (!rc.modules?.includes(targetPath)) {
|
|
40
|
+
rc.modules = [...rc.modules || [], targetPath];
|
|
39
41
|
changed = true;
|
|
40
42
|
}
|
|
41
43
|
if (!rc.devtoolsGlobal)
|
|
@@ -64,8 +66,10 @@ function remove(modulePath) {
|
|
|
64
66
|
const esmPath = resolve(modulePath, "dist", "module.mjs");
|
|
65
67
|
const cjsPath = resolve(modulePath, "module.cjs");
|
|
66
68
|
const removePaths = [
|
|
69
|
+
modulePath,
|
|
67
70
|
esmPath,
|
|
68
71
|
cjsPath,
|
|
72
|
+
modulePath.replace(/\\/g, "/"),
|
|
69
73
|
esmPath.replace(/\\/g, "/"),
|
|
70
74
|
cjsPath.replace(/\\/g, "/")
|
|
71
75
|
];
|
package/dist/client/200.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html >
|
|
3
3
|
<head><meta charset="utf-8">
|
|
4
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js"><link rel="preload" as="style" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-dom.esm-bundler.c94e30c4.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-core.esm-bundler.ad888d46.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.d56af0a0.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/router.96f0ba10.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt.21217109.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/utils.8ee5a573.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error.ab352ad9.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/state.2c41a47c.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/layout.f6e6e706.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-link.ed65b9da.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/app.config.12fdda03.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/defu.5a7c1433.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/storage.abd6f5f8.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.e1377d3f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.bf1af76f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/color-mode-options.00c15dd1.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/client.210463dc.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/rpc.2e6b297d.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-loading-indicator.366d3e52.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/page.fb94fd70.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/composables.59ebbb45.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/unocss-runtime.1d429fd2.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error-component.0aa3c1f1.js"><link rel="stylesheet" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><script>"use strict";const w=window,de=document.documentElement,knownColorSchemes=["dark","light"],preference=window.localStorage.getItem("nuxt-color-mode")||"system";let value=preference==="system"?getColorScheme():preference;const forcedColorMode=de.getAttribute("data-color-mode-forced");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w["__NUXT_COLOR_MODE__"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.add(o):de.className+=" "+o,t&&de.setAttribute("data-"+t,e)}function removeColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,"g"),""),t&&de.removeAttribute("data-"+t)}function prefersColorScheme(e){return w.matchMedia("(prefers-color-scheme"+e+")")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme("").media!=="not all"){for(const e of knownColorSchemes)if(prefersColorScheme(":"+e).matches)return e}return"light"}
|
|
5
5
|
</script></head>
|
|
6
|
-
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.
|
|
6
|
+
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js" crossorigin></script></body>
|
|
7
7
|
</html>
|
package/dist/client/404.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html >
|
|
3
3
|
<head><meta charset="utf-8">
|
|
4
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js"><link rel="preload" as="style" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-dom.esm-bundler.c94e30c4.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-core.esm-bundler.ad888d46.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.d56af0a0.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/router.96f0ba10.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt.21217109.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/utils.8ee5a573.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error.ab352ad9.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/state.2c41a47c.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/layout.f6e6e706.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-link.ed65b9da.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/app.config.12fdda03.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/defu.5a7c1433.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/storage.abd6f5f8.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.e1377d3f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.bf1af76f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/color-mode-options.00c15dd1.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/client.210463dc.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/rpc.2e6b297d.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-loading-indicator.366d3e52.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/page.fb94fd70.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/composables.59ebbb45.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/unocss-runtime.1d429fd2.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error-component.0aa3c1f1.js"><link rel="stylesheet" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><script>"use strict";const w=window,de=document.documentElement,knownColorSchemes=["dark","light"],preference=window.localStorage.getItem("nuxt-color-mode")||"system";let value=preference==="system"?getColorScheme():preference;const forcedColorMode=de.getAttribute("data-color-mode-forced");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w["__NUXT_COLOR_MODE__"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.add(o):de.className+=" "+o,t&&de.setAttribute("data-"+t,e)}function removeColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,"g"),""),t&&de.removeAttribute("data-"+t)}function prefersColorScheme(e){return w.matchMedia("(prefers-color-scheme"+e+")")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme("").media!=="not all"){for(const e of knownColorSchemes)if(prefersColorScheme(":"+e).matches)return e}return"light"}
|
|
5
5
|
</script></head>
|
|
6
|
-
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.
|
|
6
|
+
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js" crossorigin></script></body>
|
|
7
7
|
</html>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html >
|
|
3
3
|
<head><meta charset="utf-8">
|
|
4
|
-
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.
|
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js"><link rel="preload" as="style" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-dom.esm-bundler.c94e30c4.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/runtime-core.esm-bundler.ad888d46.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.d56af0a0.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/router.96f0ba10.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt.21217109.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/utils.8ee5a573.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error.ab352ad9.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/state.2c41a47c.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/layout.f6e6e706.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-link.ed65b9da.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/app.config.12fdda03.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/defu.5a7c1433.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/storage.abd6f5f8.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.e1377d3f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/index.bf1af76f.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/color-mode-options.00c15dd1.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/client.210463dc.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/rpc.2e6b297d.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/nuxt-loading-indicator.366d3e52.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/page.fb94fd70.js"><link rel="modulepreload" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/composables.59ebbb45.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/unocss-runtime.1d429fd2.js"><link rel="prefetch" as="script" crossorigin href="/__nuxt_devtools__/client/_nuxt/error-component.0aa3c1f1.js"><link rel="stylesheet" href="/__nuxt_devtools__/client/_nuxt/entry.6e08c3bd.css"><script>"use strict";const w=window,de=document.documentElement,knownColorSchemes=["dark","light"],preference=window.localStorage.getItem("nuxt-color-mode")||"system";let value=preference==="system"?getColorScheme():preference;const forcedColorMode=de.getAttribute("data-color-mode-forced");forcedColorMode&&(value=forcedColorMode),addColorScheme(value),w["__NUXT_COLOR_MODE__"]={preference,value,getColorScheme,addColorScheme,removeColorScheme};function addColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.add(o):de.className+=" "+o,t&&de.setAttribute("data-"+t,e)}function removeColorScheme(e){const o=""+e+"",t="";de.classList?de.classList.remove(o):de.className=de.className.replace(new RegExp(o,"g"),""),t&&de.removeAttribute("data-"+t)}function prefersColorScheme(e){return w.matchMedia("(prefers-color-scheme"+e+")")}function getColorScheme(){if(w.matchMedia&&prefersColorScheme("").media!=="not all"){for(const e of knownColorSchemes)if(prefersColorScheme(":"+e).matches)return e}return"light"}
|
|
5
5
|
</script></head>
|
|
6
|
-
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.
|
|
6
|
+
<body ><div id="__nuxt"></div><script>window.__NUXT__={serverRendered:false,config:{public:{fixture4:"public runtime config from nuxt.config.ts"},app:{baseURL:"\u002F__nuxt_devtools__\u002Fclient",buildAssetsDir:"\u002F_nuxt\u002F",cdnURL:""}},data:{},state:{}}</script><script type="module" src="/__nuxt_devtools__/client/_nuxt/entry.72ee2736.js" crossorigin></script></body>
|
|
7
7
|
</html>
|