aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/webpack
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-03-31 15:43:17 +0200
committerChocobozzz <me@florianbigard.com>2020-04-01 14:06:46 +0200
commit4adebd513ec207d54e76a09cd4a8554d1900d34a (patch)
tree1c141b43b47609522e6290e8b02a3389b72d1a6b /client/webpack
parent6541071b4acfff9df7b1ddba53000f0e1bba3257 (diff)
downloadPeerTube-4adebd513ec207d54e76a09cd4a8554d1900d34a.tar.gz
PeerTube-4adebd513ec207d54e76a09cd4a8554d1900d34a.tar.zst
PeerTube-4adebd513ec207d54e76a09cd4a8554d1900d34a.zip
Client dependencies upgrade
Diffstat (limited to 'client/webpack')
-rw-r--r--client/webpack/webpack.video-embed.js14
1 files changed, 8 insertions, 6 deletions
diff --git a/client/webpack/webpack.video-embed.js b/client/webpack/webpack.video-embed.js
index f6d532556..84ab83669 100644
--- a/client/webpack/webpack.video-embed.js
+++ b/client/webpack/webpack.video-embed.js
@@ -78,10 +78,12 @@ module.exports = function () {
78 { 78 {
79 loader: 'sass-loader', 79 loader: 'sass-loader',
80 options: { 80 options: {
81 sourceMap: true, 81 sassOptions: {
82 includePaths: [ 82 sourceMap: true,
83 helpers.root('src/sass/include') 83 includePaths: [
84 ] 84 helpers.root('src/sass/include')
85 ]
86 }
85 } 87 }
86 } 88 }
87 ] 89 ]
@@ -131,7 +133,7 @@ module.exports = function () {
131 template: 'src/standalone/videos/embed.html', 133 template: 'src/standalone/videos/embed.html',
132 filename: 'embed.html', 134 filename: 'embed.html',
133 title: 'PeerTube', 135 title: 'PeerTube',
134 chunksSortMode: 'dependency', 136 chunksSortMode: 'auto',
135 inject: 'body', 137 inject: 'body',
136 chunks: ['video-embed'] 138 chunks: ['video-embed']
137 }), 139 }),
@@ -140,7 +142,7 @@ module.exports = function () {
140 template: '!!html-loader!src/standalone/videos/test-embed.html', 142 template: '!!html-loader!src/standalone/videos/test-embed.html',
141 filename: 'test-embed.html', 143 filename: 'test-embed.html',
142 title: 'PeerTube', 144 title: 'PeerTube',
143 chunksSortMode: 'dependency', 145 chunksSortMode: 'auto',
144 inject: 'body', 146 inject: 'body',
145 chunks: ['test-embed'] 147 chunks: ['test-embed']
146 }), 148 }),