2016-10-18 18:46:48 -04:00
|
|
|
'use strict';
|
|
|
|
|
2017-01-19 04:41:38 -05:00
|
|
|
var fs = require('fs');
|
2016-10-18 18:46:48 -04:00
|
|
|
var path = require('path');
|
|
|
|
var webpack = require('webpack');
|
2017-08-07 00:14:42 -04:00
|
|
|
var StatsWriterPlugin = require('webpack-stats-plugin').StatsWriterPlugin;
|
2017-07-18 04:30:11 -04:00
|
|
|
var CopyWebpackPlugin = require('copy-webpack-plugin');
|
2017-02-02 17:30:59 -05:00
|
|
|
var CompressionPlugin = require('compression-webpack-plugin');
|
2017-05-25 03:49:55 -04:00
|
|
|
var NameAllModulesPlugin = require('name-all-modules-plugin');
|
2017-02-20 16:42:51 -05:00
|
|
|
var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2017-04-09 18:45:07 -04:00
|
|
|
var WatchMissingNodeModulesPlugin = require('react-dev-utils/WatchMissingNodeModulesPlugin');
|
2016-10-18 18:46:48 -04:00
|
|
|
|
2017-02-01 14:05:52 -05:00
|
|
|
var ROOT_PATH = path.resolve(__dirname, '..');
|
2016-10-18 18:46:48 -04:00
|
|
|
var IS_PRODUCTION = process.env.NODE_ENV === 'production';
|
2017-06-16 16:15:54 -04:00
|
|
|
var IS_DEV_SERVER = process.argv.join(' ').indexOf('webpack-dev-server') !== -1;
|
2017-04-12 15:05:23 -04:00
|
|
|
var DEV_SERVER_HOST = process.env.DEV_SERVER_HOST || 'localhost';
|
2017-02-01 14:05:52 -05:00
|
|
|
var DEV_SERVER_PORT = parseInt(process.env.DEV_SERVER_PORT, 10) || 3808;
|
2017-02-15 18:57:51 -05:00
|
|
|
var DEV_SERVER_LIVERELOAD = process.env.DEV_SERVER_LIVERELOAD !== 'false';
|
2017-02-20 16:42:51 -05:00
|
|
|
var WEBPACK_REPORT = process.env.WEBPACK_REPORT;
|
2017-05-30 12:41:50 -04:00
|
|
|
var NO_COMPRESSION = process.env.NO_COMPRESSION;
|
2016-10-18 18:46:48 -04:00
|
|
|
|
|
|
|
var config = {
|
2017-04-08 00:18:37 -04:00
|
|
|
// because sqljs requires fs.
|
|
|
|
node: {
|
|
|
|
fs: "empty"
|
|
|
|
},
|
2016-11-03 17:38:54 -04:00
|
|
|
context: path.join(ROOT_PATH, 'app/assets/javascripts'),
|
2016-10-18 18:46:48 -04:00
|
|
|
entry: {
|
2017-05-26 06:56:54 -04:00
|
|
|
balsamiq_viewer: './blob/balsamiq_viewer.js',
|
2017-04-19 07:44:37 -04:00
|
|
|
blob: './blob_edit/blob_bundle.js',
|
|
|
|
boards: './boards/boards_bundle.js',
|
2017-03-01 17:01:33 -05:00
|
|
|
common: './commons/index.js',
|
2017-09-04 11:52:59 -04:00
|
|
|
common_vue: './vue_shared/vue_resource_interceptor.js',
|
2017-03-02 02:34:36 -05:00
|
|
|
common_d3: ['d3'],
|
2016-11-03 17:38:54 -04:00
|
|
|
cycle_analytics: './cycle_analytics/cycle_analytics_bundle.js',
|
2017-02-05 15:44:01 -05:00
|
|
|
commit_pipelines: './commit/pipelines/pipelines_bundle.js',
|
2017-04-28 12:06:19 -04:00
|
|
|
deploy_keys: './deploy_keys/index.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
diff_notes: './diff_notes/diff_notes_bundle.js',
|
|
|
|
environments: './environments/environments_bundle.js',
|
2017-02-12 09:55:18 -05:00
|
|
|
environments_folder: './environments/folder/environments_folder_bundle.js',
|
2017-01-13 10:30:40 -05:00
|
|
|
filtered_search: './filtered_search/filtered_search_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
graphs: './graphs/graphs_bundle.js',
|
2017-08-01 04:50:59 -04:00
|
|
|
graphs_charts: './graphs/graphs_charts.js',
|
|
|
|
graphs_show: './graphs/graphs_show.js',
|
2017-04-19 07:44:37 -04:00
|
|
|
group: './group.js',
|
2017-05-04 20:29:56 -04:00
|
|
|
groups: './groups/index.js',
|
2017-03-02 06:05:48 -05:00
|
|
|
groups_list: './groups_list.js',
|
2017-09-22 04:39:47 -04:00
|
|
|
help: './help/help.js',
|
2017-07-24 11:21:05 -04:00
|
|
|
how_to_merge: './how_to_merge.js',
|
2017-04-19 07:44:37 -04:00
|
|
|
issue_show: './issue_show/index.js',
|
2017-05-25 04:52:28 -04:00
|
|
|
integrations: './integrations',
|
2017-06-12 05:20:19 -04:00
|
|
|
job_details: './jobs/job_details_bundle.js',
|
2017-04-18 12:00:44 -04:00
|
|
|
locale: './locale/index.js',
|
2017-04-19 07:44:37 -04:00
|
|
|
main: './main.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
merge_conflicts: './merge_conflicts/merge_conflicts_bundle.js',
|
2017-03-20 15:54:03 -04:00
|
|
|
monitoring: './monitoring/monitoring_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
network: './network/network_bundle.js',
|
2017-03-16 13:04:58 -04:00
|
|
|
notebook_viewer: './blob/notebook_viewer.js',
|
2017-06-08 18:50:11 -04:00
|
|
|
notes: './notes/index.js',
|
2017-04-03 14:39:50 -04:00
|
|
|
pdf_viewer: './blob/pdf_viewer.js',
|
2017-06-14 09:04:50 -04:00
|
|
|
pipelines: './pipelines/pipelines_bundle.js',
|
2017-07-25 07:19:27 -04:00
|
|
|
pipelines_charts: './pipelines/pipelines_charts.js',
|
2017-07-25 06:12:30 -04:00
|
|
|
pipelines_details: './pipelines/pipeline_details_bundle.js',
|
|
|
|
pipelines_times: './pipelines/pipelines_times.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
profile: './profile/profile_bundle.js',
|
2017-08-07 06:09:50 -04:00
|
|
|
project_import_gl: './projects/project_import_gitlab_project.js',
|
2017-07-25 04:41:43 -04:00
|
|
|
project_new: './projects/project_new.js',
|
2017-05-31 07:38:41 -04:00
|
|
|
prometheus_metrics: './prometheus_metrics',
|
2017-07-19 08:46:15 -04:00
|
|
|
protected_branches: './protected_branches',
|
2017-04-06 04:48:17 -04:00
|
|
|
protected_tags: './protected_tags',
|
2017-07-18 05:21:07 -04:00
|
|
|
repo: './repo/index.js',
|
2017-05-04 08:11:15 -04:00
|
|
|
sidebar: './sidebar/sidebar_bundle.js',
|
2017-05-07 18:35:56 -04:00
|
|
|
schedule_form: './pipeline_schedules/pipeline_schedule_form_bundle.js',
|
|
|
|
schedules_index: './pipeline_schedules/pipeline_schedules_index_bundle.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
snippet: './snippet/snippet_bundle.js',
|
2017-04-19 07:44:37 -04:00
|
|
|
sketch_viewer: './blob/sketch_viewer.js',
|
2017-04-06 06:02:24 -04:00
|
|
|
stl_viewer: './blob/stl_viewer.js',
|
2016-11-03 17:38:54 -04:00
|
|
|
terminal: './terminal/terminal_bundle.js',
|
2017-03-07 03:59:12 -05:00
|
|
|
u2f: ['vendor/u2f'],
|
2017-08-01 04:50:59 -04:00
|
|
|
ui_development_kit: './ui_development_kit.js',
|
2017-04-04 09:58:45 -04:00
|
|
|
raven: './raven/index.js',
|
2017-05-09 00:15:34 -04:00
|
|
|
vue_merge_request_widget: './vue_merge_request_widget/index.js',
|
2017-05-12 17:57:50 -04:00
|
|
|
test: './test.js',
|
2017-08-01 04:50:59 -04:00
|
|
|
two_factor_auth: './two_factor_auth.js',
|
2017-07-06 15:37:31 -04:00
|
|
|
performance_bar: './performance_bar.js',
|
2017-06-28 16:15:50 -04:00
|
|
|
webpack_runtime: './webpack.js',
|
2016-10-18 18:46:48 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
output: {
|
|
|
|
path: path.join(ROOT_PATH, 'public/assets/webpack'),
|
|
|
|
publicPath: '/assets/webpack/',
|
2017-05-25 03:51:36 -04:00
|
|
|
filename: IS_PRODUCTION ? '[name].[chunkhash].bundle.js' : '[name].bundle.js',
|
|
|
|
chunkFilename: IS_PRODUCTION ? '[name].[chunkhash].chunk.js' : '[name].chunk.js',
|
2016-10-18 18:46:48 -04:00
|
|
|
},
|
|
|
|
|
2016-10-19 15:29:43 -04:00
|
|
|
module: {
|
2017-02-08 16:24:08 -05:00
|
|
|
rules: [
|
2016-10-19 15:29:43 -04:00
|
|
|
{
|
2017-03-15 19:31:01 -04:00
|
|
|
test: /\.js$/,
|
2017-02-06 01:24:23 -05:00
|
|
|
exclude: /(node_modules|vendor\/assets)/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'babel-loader',
|
2017-02-24 13:35:25 -05:00
|
|
|
},
|
2017-03-15 18:48:48 -04:00
|
|
|
{
|
|
|
|
test: /\.vue$/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'vue-loader',
|
2017-03-15 18:48:48 -04:00
|
|
|
},
|
2017-02-24 13:35:25 -05:00
|
|
|
{
|
|
|
|
test: /\.svg$/,
|
2017-04-06 16:45:12 -04:00
|
|
|
loader: 'raw-loader',
|
|
|
|
},
|
2017-04-11 22:44:22 -04:00
|
|
|
{
|
2017-04-15 19:38:07 -04:00
|
|
|
test: /\.(gif|png)$/,
|
2017-04-11 22:44:22 -04:00
|
|
|
loader: 'url-loader',
|
2017-04-15 19:38:07 -04:00
|
|
|
options: { limit: 2048 },
|
2017-04-11 22:44:22 -04:00
|
|
|
},
|
2017-04-06 16:45:12 -04:00
|
|
|
{
|
2017-08-07 03:47:29 -04:00
|
|
|
test: /\.(worker(\.min)?\.js|pdf|bmpr)$/,
|
2017-04-03 14:39:50 -04:00
|
|
|
exclude: /node_modules/,
|
|
|
|
loader: 'file-loader',
|
2017-08-07 03:47:29 -04:00
|
|
|
options: {
|
|
|
|
name: '[name].[hash].[ext]',
|
|
|
|
}
|
2017-04-03 14:39:50 -04:00
|
|
|
},
|
2017-04-15 11:07:31 -04:00
|
|
|
{
|
2017-05-25 11:03:21 -04:00
|
|
|
test: /locale\/\w+\/(.*)\.js$/,
|
2017-04-15 11:07:31 -04:00
|
|
|
loader: 'exports-loader?locales',
|
|
|
|
},
|
2017-07-18 04:30:11 -04:00
|
|
|
{
|
|
|
|
test: /monaco-editor\/\w+\/vs\/loader\.js$/,
|
|
|
|
use: [
|
|
|
|
{ loader: 'exports-loader', options: 'l.global' },
|
|
|
|
{ loader: 'imports-loader', options: 'l=>{},this=>l,AMDLoader=>this,module=>undefined' },
|
|
|
|
],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
|
|
|
|
noParse: [/monaco-editor\/\w+\/vs\//],
|
2016-10-19 15:29:43 -04:00
|
|
|
},
|
|
|
|
|
2016-10-18 18:46:48 -04:00
|
|
|
plugins: [
|
|
|
|
// manifest filename must match config.webpack.manifest_filename
|
|
|
|
// webpack-rails only needs assetsByChunkName to function properly
|
2017-08-07 00:14:42 -04:00
|
|
|
new StatsWriterPlugin({
|
|
|
|
filename: 'manifest.json',
|
|
|
|
transform: function(data, opts) {
|
|
|
|
var stats = opts.compiler.getStats().toJson({
|
|
|
|
chunkModules: false,
|
|
|
|
source: false,
|
|
|
|
chunks: false,
|
|
|
|
modules: false,
|
|
|
|
assets: true
|
|
|
|
});
|
|
|
|
return JSON.stringify(stats, null, 2);
|
|
|
|
}
|
2017-01-13 11:11:35 -05:00
|
|
|
}),
|
2017-03-01 16:47:52 -05:00
|
|
|
|
|
|
|
// prevent pikaday from including moment.js
|
2017-02-14 16:45:36 -05:00
|
|
|
new webpack.IgnorePlugin(/moment/, /pikaday/),
|
2017-03-01 16:47:52 -05:00
|
|
|
|
2017-03-01 18:02:01 -05:00
|
|
|
// fix legacy jQuery plugins which depend on globals
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
$: 'jquery',
|
|
|
|
jQuery: 'jquery',
|
|
|
|
}),
|
|
|
|
|
2017-05-25 03:49:55 -04:00
|
|
|
// assign deterministic module ids
|
2017-05-23 17:41:32 -04:00
|
|
|
new webpack.NamedModulesPlugin(),
|
2017-05-25 03:49:55 -04:00
|
|
|
new NameAllModulesPlugin(),
|
2017-03-01 17:01:33 -05:00
|
|
|
|
2017-05-25 03:51:36 -04:00
|
|
|
// assign deterministic chunk ids
|
|
|
|
new webpack.NamedChunksPlugin((chunk) => {
|
|
|
|
if (chunk.name) {
|
|
|
|
return chunk.name;
|
|
|
|
}
|
2017-08-21 13:50:06 -04:00
|
|
|
return chunk.mapModules((m) => {
|
2017-05-25 03:51:36 -04:00
|
|
|
var chunkPath = m.request.split('!').pop();
|
|
|
|
return path.relative(m.context, chunkPath);
|
|
|
|
}).join('_');
|
|
|
|
}),
|
|
|
|
|
2017-03-01 21:28:34 -05:00
|
|
|
// create cacheable common library bundle for all vue chunks
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'common_vue',
|
|
|
|
chunks: [
|
|
|
|
'boards',
|
|
|
|
'commit_pipelines',
|
|
|
|
'cycle_analytics',
|
2017-05-04 10:57:08 -04:00
|
|
|
'deploy_keys',
|
2017-03-01 21:28:34 -05:00
|
|
|
'diff_notes',
|
|
|
|
'environments',
|
|
|
|
'environments_folder',
|
2017-05-10 17:11:23 -04:00
|
|
|
'filtered_search',
|
2017-06-07 11:05:17 -04:00
|
|
|
'groups',
|
2017-04-19 07:44:37 -04:00
|
|
|
'issue_show',
|
2017-06-12 05:20:19 -04:00
|
|
|
'job_details',
|
2017-03-01 21:28:34 -05:00
|
|
|
'merge_conflicts',
|
2017-06-20 04:50:31 -04:00
|
|
|
'monitoring',
|
2017-03-16 13:04:58 -04:00
|
|
|
'notebook_viewer',
|
2017-06-08 18:50:11 -04:00
|
|
|
'notes',
|
2017-04-03 14:39:50 -04:00
|
|
|
'pdf_viewer',
|
2017-04-19 07:44:37 -04:00
|
|
|
'pipelines',
|
2017-05-26 06:56:54 -04:00
|
|
|
'pipelines_details',
|
2017-07-18 05:21:07 -04:00
|
|
|
'repo',
|
2017-05-10 17:26:50 -04:00
|
|
|
'schedule_form',
|
|
|
|
'schedules_index',
|
|
|
|
'sidebar',
|
2017-05-10 16:40:48 -04:00
|
|
|
'vue_merge_request_widget',
|
2017-03-01 21:28:34 -05:00
|
|
|
],
|
2017-03-02 01:58:47 -05:00
|
|
|
minChunks: function(module, count) {
|
|
|
|
return module.resource && (/vue_shared/).test(module.resource);
|
|
|
|
},
|
2017-03-01 21:28:34 -05:00
|
|
|
}),
|
|
|
|
|
2017-03-02 02:34:36 -05:00
|
|
|
// create cacheable common library bundle for all d3 chunks
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'common_d3',
|
2017-03-27 17:11:02 -04:00
|
|
|
chunks: [
|
|
|
|
'graphs',
|
|
|
|
'monitoring',
|
|
|
|
],
|
2017-03-02 02:34:36 -05:00
|
|
|
}),
|
|
|
|
|
2017-03-02 01:35:44 -05:00
|
|
|
// create cacheable common library bundles
|
2017-03-01 17:01:33 -05:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-06-28 16:15:50 -04:00
|
|
|
names: ['main', 'locale', 'common', 'webpack_runtime'],
|
2017-04-18 09:55:09 -04:00
|
|
|
}),
|
2017-07-17 20:42:34 -04:00
|
|
|
|
2017-08-08 09:42:24 -04:00
|
|
|
// enable scope hoisting
|
|
|
|
new webpack.optimize.ModuleConcatenationPlugin(),
|
|
|
|
|
2017-07-18 04:30:11 -04:00
|
|
|
// copy pre-compiled vendor libraries verbatim
|
2017-07-17 20:42:34 -04:00
|
|
|
new CopyWebpackPlugin([
|
|
|
|
{
|
2017-07-18 04:30:11 -04:00
|
|
|
from: path.join(ROOT_PATH, `node_modules/monaco-editor/${IS_PRODUCTION ? 'min' : 'dev'}/vs`),
|
|
|
|
to: 'monaco-editor/vs',
|
|
|
|
transform: function(content, path) {
|
2017-07-21 07:17:17 -04:00
|
|
|
if (/\.js$/.test(path) && !/worker/i.test(path)) {
|
2017-07-18 04:30:11 -04:00
|
|
|
return (
|
|
|
|
'(function(){\n' +
|
|
|
|
'var define = this.define, require = this.require;\n' +
|
2017-07-21 08:33:14 -04:00
|
|
|
'window.define = define; window.require = require;\n' +
|
2017-07-18 04:30:11 -04:00
|
|
|
content +
|
|
|
|
'\n}.call(window.__monaco_context__ || (window.__monaco_context__ = {})));'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return content;
|
|
|
|
}
|
2017-07-17 20:42:34 -04:00
|
|
|
}
|
|
|
|
]),
|
2016-10-19 15:29:43 -04:00
|
|
|
],
|
|
|
|
|
|
|
|
resolve: {
|
2017-03-15 19:31:01 -04:00
|
|
|
extensions: ['.js'],
|
2016-10-28 04:22:02 -04:00
|
|
|
alias: {
|
2017-01-09 18:23:54 -05:00
|
|
|
'~': path.join(ROOT_PATH, 'app/assets/javascripts'),
|
2017-03-07 16:25:27 -05:00
|
|
|
'emojis': path.join(ROOT_PATH, 'fixtures/emojis'),
|
2017-03-03 05:46:48 -05:00
|
|
|
'empty_states': path.join(ROOT_PATH, 'app/views/shared/empty_states'),
|
2017-02-27 05:36:56 -05:00
|
|
|
'icons': path.join(ROOT_PATH, 'app/views/shared/icons'),
|
2017-04-15 19:38:07 -04:00
|
|
|
'images': path.join(ROOT_PATH, 'app/assets/images'),
|
2016-10-28 04:22:02 -04:00
|
|
|
'vendor': path.join(ROOT_PATH, 'vendor/assets/javascripts'),
|
2017-03-15 23:08:08 -04:00
|
|
|
'vue$': 'vue/dist/vue.esm.js',
|
2017-01-09 18:23:54 -05:00
|
|
|
}
|
2016-10-19 15:29:43 -04:00
|
|
|
}
|
2016-10-18 18:46:48 -04:00
|
|
|
}
|
|
|
|
|
2016-10-19 16:47:49 -04:00
|
|
|
if (IS_PRODUCTION) {
|
2017-01-07 02:36:19 -05:00
|
|
|
config.devtool = 'source-map';
|
2016-10-19 16:47:49 -04:00
|
|
|
config.plugins.push(
|
2017-02-16 17:59:26 -05:00
|
|
|
new webpack.NoEmitOnErrorsPlugin(),
|
2017-02-08 16:24:08 -05:00
|
|
|
new webpack.LoaderOptionsPlugin({
|
|
|
|
minimize: true,
|
|
|
|
debug: false
|
|
|
|
}),
|
2016-10-19 16:47:49 -04:00
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
2017-02-08 16:24:08 -05:00
|
|
|
sourceMap: true
|
2016-10-19 16:47:49 -04:00
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': { NODE_ENV: JSON.stringify('production') }
|
2017-02-16 18:08:02 -05:00
|
|
|
})
|
2016-10-19 16:47:49 -04:00
|
|
|
);
|
2017-05-30 12:41:50 -04:00
|
|
|
|
2017-08-16 15:39:01 -04:00
|
|
|
// compression can require a lot of compute time and is disabled in CI
|
2017-05-30 12:41:50 -04:00
|
|
|
if (!NO_COMPRESSION) {
|
2017-08-16 15:39:01 -04:00
|
|
|
config.plugins.push(new CompressionPlugin());
|
2017-05-30 12:41:50 -04:00
|
|
|
}
|
2016-10-19 16:56:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (IS_DEV_SERVER) {
|
2017-04-04 16:15:28 -04:00
|
|
|
config.devtool = 'cheap-module-eval-source-map';
|
2016-10-18 18:46:48 -04:00
|
|
|
config.devServer = {
|
2017-04-12 15:05:23 -04:00
|
|
|
host: DEV_SERVER_HOST,
|
2016-10-18 18:46:48 -04:00
|
|
|
port: DEV_SERVER_PORT,
|
2017-07-07 14:00:31 -04:00
|
|
|
disableHostCheck: true,
|
2017-02-09 21:16:38 -05:00
|
|
|
headers: { 'Access-Control-Allow-Origin': '*' },
|
|
|
|
stats: 'errors-only',
|
2017-06-15 03:46:15 -04:00
|
|
|
hot: DEV_SERVER_LIVERELOAD,
|
2017-02-15 18:57:51 -05:00
|
|
|
inline: DEV_SERVER_LIVERELOAD
|
2016-10-18 18:46:48 -04:00
|
|
|
};
|
2017-04-09 18:45:07 -04:00
|
|
|
config.plugins.push(
|
|
|
|
// watch node_modules for changes if we encounter a missing module compile error
|
|
|
|
new WatchMissingNodeModulesPlugin(path.join(ROOT_PATH, 'node_modules'))
|
|
|
|
);
|
2017-06-15 03:46:15 -04:00
|
|
|
if (DEV_SERVER_LIVERELOAD) {
|
|
|
|
config.plugins.push(new webpack.HotModuleReplacementPlugin());
|
|
|
|
}
|
2016-10-18 18:46:48 -04:00
|
|
|
}
|
|
|
|
|
2017-02-20 16:42:51 -05:00
|
|
|
if (WEBPACK_REPORT) {
|
|
|
|
config.plugins.push(
|
|
|
|
new BundleAnalyzerPlugin({
|
|
|
|
analyzerMode: 'static',
|
|
|
|
generateStatsFile: true,
|
|
|
|
openAnalyzer: false,
|
|
|
|
reportFilename: path.join(ROOT_PATH, 'webpack-report/index.html'),
|
|
|
|
statsFilename: path.join(ROOT_PATH, 'webpack-report/stats.json'),
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2016-10-18 18:46:48 -04:00
|
|
|
module.exports = config;
|