mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-24 09:40:28 -06:00
Use named chunk for embed on analyze
This commit is contained in:
parent
d61893f723
commit
031ea8efed
@ -40,7 +40,11 @@ module.exports = function () {
|
||||
: '[name].[hash].bundle.js',
|
||||
|
||||
sourceMapFilename: '[file].map',
|
||||
chunkFilename: '[id].[hash].chunk.js',
|
||||
|
||||
chunkFilename: process.env.ANALYZE_BUNDLE === 'true'
|
||||
? '[name].chunk.js'
|
||||
: '[id].[hash].chunk.js',
|
||||
|
||||
publicPath: '/client/standalone/videos/'
|
||||
},
|
||||
|
||||
|
@ -3,7 +3,7 @@ import { body, param, query, ValidationChain } from 'express-validator'
|
||||
import { isAbleToUploadVideo } from '@server/lib/user'
|
||||
import { getServerActor } from '@server/models/application/application'
|
||||
import { ExpressPromiseHandler } from '@server/types/express'
|
||||
import { MVideoFullLight, MVideoWithRights } from '@server/types/models'
|
||||
import { MVideoWithRights } from '@server/types/models'
|
||||
import { ServerErrorCode, UserRight, VideoChangeOwnershipStatus, VideoPrivacy } from '../../../../shared'
|
||||
import { HttpStatusCode } from '../../../../shared/core-utils/miscs/http-error-codes'
|
||||
import { VideoChangeOwnershipAccept } from '../../../../shared/models/videos/video-change-ownership-accept.model'
|
||||
|
@ -28,7 +28,6 @@ import {
|
||||
MUserFormattable,
|
||||
MUserNotifSettingChannelDefault,
|
||||
MUserWithNotificationSetting,
|
||||
MVideoFullLight,
|
||||
MVideoWithRights
|
||||
} from '@server/types/models'
|
||||
import { hasUserRight, USER_ROLE_LABELS } from '../../../shared/core-utils/users'
|
||||
|
Loading…
Reference in New Issue
Block a user