Unify webpackChunkName to lowercase (#4412)

This commit is contained in:
Yamagishi Kazutoshi 2017-07-28 20:34:55 +09:00 committed by Eugen Rochko
parent afb593b44e
commit 12874eafa6
1 changed files with 2 additions and 2 deletions

View File

@ -103,9 +103,9 @@ export function ReportModal () {
}
export function MediaGallery () {
return import(/* webpackChunkName: "status/MediaGallery" */'../../../components/media_gallery');
return import(/* webpackChunkName: "status/media_gallery" */'../../../components/media_gallery');
}
export function VideoPlayer () {
return import(/* webpackChunkName: "status/VideoPlayer" */'../../../components/video_player');
return import(/* webpackChunkName: "status/video_player" */'../../../components/video_player');
}