diff options
Diffstat (limited to 'client/webpack')
-rw-r--r-- | client/webpack/webpack.video-embed.js | 14 |
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 | }), |