34 lines
881 B
JavaScript
34 lines
881 B
JavaScript
|
import { u as useRouter } from '../server.mjs';
|
||
|
import { useSSRContext } from 'vue';
|
||
|
import '../../nitro/node-server.mjs';
|
||
|
import 'node:http';
|
||
|
import 'node:https';
|
||
|
import 'fs';
|
||
|
import 'path';
|
||
|
import 'node:fs';
|
||
|
import 'node:url';
|
||
|
import 'unhead';
|
||
|
import '@unhead/shared';
|
||
|
import 'vue-router';
|
||
|
import 'vue/server-renderer';
|
||
|
|
||
|
const _sfc_main = {
|
||
|
__name: "index",
|
||
|
__ssrInlineRender: true,
|
||
|
setup(__props) {
|
||
|
const router = useRouter();
|
||
|
router.replace("/index.html");
|
||
|
return (_ctx, _push, _parent, _attrs) => {
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
const _sfc_setup = _sfc_main.setup;
|
||
|
_sfc_main.setup = (props, ctx) => {
|
||
|
const ssrContext = useSSRContext();
|
||
|
(ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("pages/index.vue");
|
||
|
return _sfc_setup ? _sfc_setup(props, ctx) : void 0;
|
||
|
};
|
||
|
|
||
|
export { _sfc_main as default };
|
||
|
//# sourceMappingURL=index-09a76c59.mjs.map
|