X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fconfig%2Fwebpack.common.js;h=61347dba2060e3ec80d7480a346cb0d335487e50;hb=46757b477c1adb5f98060d15998a3852e18902a6;hp=6067d94e7757c6bad07f0f7bb67a7eaecb1852ea;hpb=383bfc8356d444cbed1dab7e5c1b3bb16becfdfd;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/config/webpack.common.js b/client/config/webpack.common.js index 6067d94e7..61347dba2 100644 --- a/client/config/webpack.common.js +++ b/client/config/webpack.common.js @@ -85,23 +85,37 @@ module.exports = function (options) { rules: [ /* - * Typescript loader support for .ts and Angular 2 async routes via .async.ts + * Typescript loader support for .ts and Angular async routes via .async.ts * * See: https://github.com/s-panferov/awesome-typescript-loader */ { test: /\.ts$/, use: [ - '@angularclass/hmr-loader?pretty=' + !isProd + '&prod=' + isProd, - 'awesome-typescript-loader?{configFileName: "tsconfig.webpack.json"}', - 'angular2-template-loader', + { + loader: '@angularclass/hmr-loader', + options: { + pretty: !isProd, + prod: isProd + } + }, { loader: 'ng-router-loader', options: { - loader: 'async-system', + loader: 'async-import', genDir: 'compiled', aot: AOT } + }, + { + loader: 'awesome-typescript-loader', + options: { + configFileName: 'tsconfig.webpack.json', + useCache: !isProd + } + }, + { + loader: 'angular2-template-loader' } ], exclude: [/\.(spec|e2e)\.ts$/] @@ -114,14 +128,20 @@ module.exports = function (options) { */ { test: /\.json$/, - loader: 'json-loader' + use: 'json-loader' }, { test: /\.(sass|scss)$/, use: [ 'css-to-string-loader', - 'css-loader?sourceMap', + { + loader: 'css-loader', + options: { + sourceMap: true, + importLoaders: 1 + } + }, 'resolve-url-loader', { loader: 'sass-loader', @@ -149,11 +169,18 @@ module.exports = function (options) { */ { test: /\.html$/, - loader: 'raw-loader', + use: 'raw-loader', exclude: [ helpers.root('src/index.html'), helpers.root('src/standalone/videos/embed.html') ] + }, + + /* File loader for supporting images, for example, in CSS files. + */ + { + test: /\.(jpg|png|gif)$/, + use: 'url-loader' } ] @@ -213,11 +240,15 @@ module.exports = function (options) { * See: https://github.com/angular/angular/issues/11580 */ new ContextReplacementPlugin( - // The (\\|\/) piece accounts for path separators in *nix and Windows - /angular(\\|\/)core(\\|\/)src(\\|\/)linker/, + /** + * The (\\|\/) piece accounts for path separators in *nix and Windows + */ + /angular(\\|\/)core(\\|\/)@angular/, helpers.root('src'), // location of your src { - // your Angular Async Route paths relative to this root directory + /** + * Your Angular Async Route paths relative to this root directory + */ } ), @@ -231,20 +262,30 @@ module.exports = function (options) { */ // Used by embed.html new CopyWebpackPlugin([ - { - from: 'src/assets', - to: 'assets' - }, - { - from: 'node_modules/webtorrent/webtorrent.min.js', - to: 'assets/webtorrent' - }, + // { + // from: 'src/assets', + // to: 'assets' + // }, { from: 'src/standalone', to: 'standalone' } ]), + /* + * Plugin: ScriptExtHtmlWebpackPlugin + * Description: Enhances html-webpack-plugin functionality + * with different deployment options for your scripts including: + * + * See: https://github.com/numical/script-ext-html-webpack-plugin + */ + new ScriptExtHtmlWebpackPlugin({ + sync: [ /polyfill|vendor/ ], + defaultAttribute: 'async', + preload: [/polyfill|vendor|main/], + prefetch: [/chunk/] + }), + /* * Plugin: HtmlWebpackPlugin * Description: Simplifies creation of HTML files to serve your webpack bundles. @@ -257,19 +298,8 @@ module.exports = function (options) { template: 'src/index.html', title: METADATA.title, chunksSortMode: 'dependency', - metadata: METADATA - }), - - /* - * Plugin: ScriptExtHtmlWebpackPlugin - * Description: Enhances html-webpack-plugin functionality - * with different deployment options for your scripts including: - * - * See: https://github.com/numical/script-ext-html-webpack-plugin - */ - new ScriptExtHtmlWebpackPlugin({ - sync: [ 'webtorrent.min.js' ], - defaultAttribute: 'defer' + metadata: METADATA, + inject: 'body' }), new WebpackNotifierPlugin({ alwaysNotify: true }),