embedドメインをまとめた

This commit is contained in:
syuilo 2024-08-20 16:08:08 +09:00
parent 62f5aafa06
commit 711eb8086a
9 changed files with 2 additions and 2 deletions

View File

@ -9,13 +9,13 @@ import 'vite/modulepreload-polyfill';
import '@/style.scss';
import '@/style.embed.scss';
import { createApp, defineAsyncComponent } from 'vue';
import { common } from '@/boot/common.js';
import type { CommonBootOptions } from '@/boot/common.js';
import { common } from '@/boot/common.js';
import { setIframeId, postMessageToParentWindow } from '@/scripts/post-message.js';
import { parseEmbedParams } from '@/scripts/embed-page.js';
import { defaultStore } from '@/store.js';
import { useRouter } from '@/router/supplier.js';
import { createEmbedRouter } from '@/router/definition.embed.js';
import { createEmbedRouter } from '@/embed/router.js';
const bootOptions: Partial<CommonBootOptions> = {
routerFactory: createEmbedRouter,