diff --git a/index.html b/index.html index 570a70607..697d4a46a 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,6 @@

開発

  • 現在よせられているバグ報告・機能要望
  • Dependency Status
  • -
  • Webpack Visualizer
  • diff --git a/package.json b/package.json index b168152db..077269705 100644 --- a/package.json +++ b/package.json @@ -56,8 +56,7 @@ "react-tap-event-plugin": "^2.0.1", "shelljs": "^0.7.1", "url-loader": "^0.5.7", - "webpack": "^2.2.1", - "webpack-visualizer-plugin": "^0.1.10" + "webpack": "^2.2.1" }, "jest": { "verbose": true, diff --git a/webpack.config.js b/webpack.config.js index a4e25992e..2267b98bb 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,14 +1,10 @@ /* global process:false */ var webpack = require("webpack"); -var Visualizer = require("webpack-visualizer-plugin"); var plugins = [ new webpack.DefinePlugin({ "process.env.NODE_ENV": JSON.stringify(process.env.NODE_ENV || "development") - }), - new Visualizer({ - filename: "./gh-pages/webpack.html", - }), + }) ]; if (process.env.NODE_ENV == "production") { plugins.push(new webpack.optimize.UglifyJsPlugin({