|
@@ -17,7 +17,7 @@ export const SceneTypeDesc: { [key in SceneType]: string } = {
|
|
|
// [SceneType.QJKK]: '全景看看',
|
|
|
}
|
|
|
|
|
|
-export const SceneTypeDomain: { [key in SceneType]?: string } = {
|
|
|
+export const SceneTypeDomain: { [key in SceneType]: string } = {
|
|
|
[SceneType.SWKK]: window.location.href,
|
|
|
[SceneType.SWKJ]: window.location.href,
|
|
|
[SceneType.SWSS]: window.location.href,
|
|
@@ -28,7 +28,7 @@ export const SceneTypePaths: { [key in SceneType]: string[] } = {
|
|
|
[SceneType.SWKK]: ['/swkk/spg.html', '/swkk/epg.html'],
|
|
|
[SceneType.SWKJ]: ['/swkk/spg.html', '/swkk/epg.html'],
|
|
|
[SceneType.SWSS]: ['/swss/index.html', '/swss/index.html'],
|
|
|
- [SceneType.SWMX]: ['index.html', 'index.html'],
|
|
|
+ [SceneType.SWMX]: process.env.NODE_ENV === 'development' ? ['index.html', 'index.html'] : ['/fuse-code/index.html', '/fuse-code/index.html'],
|
|
|
}
|
|
|
|
|
|
|