|
@@ -17,6 +17,7 @@ import { mutatePageTree } from '~/stores/page-listing';
|
|
|
|
|
|
|
|
import { ForceHideMenuItems } from '../Common/Dropdown/PageItemControl';
|
|
import { ForceHideMenuItems } from '../Common/Dropdown/PageItemControl';
|
|
|
|
|
|
|
|
|
|
+// TODO: use dynamic import. refs: https://redmine.weseek.co.jp/issues/127500
|
|
|
import { SearchResultList } from './SearchResultList';
|
|
import { SearchResultList } from './SearchResultList';
|
|
|
|
|
|
|
|
import styles from './SearchPageBase.module.scss';
|
|
import styles from './SearchPageBase.module.scss';
|
|
@@ -43,7 +44,7 @@ type Props = {
|
|
|
searchPager: React.ReactNode,
|
|
searchPager: React.ReactNode,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
+// TODO: use dynamic import. refs: https://redmine.weseek.co.jp/issues/127500
|
|
|
// const SearchResultList = dynamic(() => import('./SearchResultList').then(mod => mod.SearchResultList), { ssr: false });
|
|
// const SearchResultList = dynamic(() => import('./SearchResultList').then(mod => mod.SearchResultList), { ssr: false });
|
|
|
const SearchResultContent = dynamic(() => import('./SearchResultContent').then(mod => mod.SearchResultContent), {
|
|
const SearchResultContent = dynamic(() => import('./SearchResultContent').then(mod => mod.SearchResultContent), {
|
|
|
ssr: false,
|
|
ssr: false,
|