diff --git a/build/webpack.config.js b/build/webpack.config.js
index 2c2f424..1e13e06 100644
--- a/build/webpack.config.js
+++ b/build/webpack.config.js
@@ -5,7 +5,6 @@
 var path = require('path');
 var webpack = require('webpack');
 var ExtractTextPlugin = require('extract-text-webpack-plugin');
-var HtmlWebpackPlugin = require('html-webpack-plugin');
 
 module.exports = {
     // 入口
@@ -63,10 +62,5 @@ module.exports = {
     plugins: [
         new ExtractTextPlugin("[name].css",{ allChunks : true,resolve : ['modules'] }),             // 提取CSS
         new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'),                           // 提取第三方库
-        new HtmlWebpackPlugin({                                                                     // 构建html文件
-            filename: 'index.html',
-            template: './test/index.html',
-            inject: 'body'
-        })
     ]
 };
diff --git a/package.json b/package.json
index 9db72ca..c228ac1 100644
--- a/package.json
+++ b/package.json
@@ -15,8 +15,7 @@
   ],
   "main": "src/index.js",
   "scripts": {
-    "init": "webpack --progress --config build/webpack.config.js",
-    "dev": "webpack-dev-server --content-base test/dist/ --open --inline --hot --compress --history-api-fallback --port 8081 --config build/webpack.config.js",
+    "dev": "webpack-dev-server --content-base test/ --open --inline --hot --compress --history-api-fallback --port 8081 --config build/webpack.config.js",
     "build": "gulp --gulpfile build/build-style.js"
   },
   "repository": {
@@ -52,7 +51,6 @@
     "gulp-minify-css": "^1.2.4",
     "gulp-rename": "^1.2.2",
     "html-loader": "^0.3.0",
-    "html-webpack-plugin": "^2.22.0",
     "less": "^2.7.1",
     "less-loader": "^2.2.3",
     "style-loader": "^0.13.1",
diff --git a/test/index.html b/test/index.html
index 90bec8e..f56e8a5 100644
--- a/test/index.html
+++ b/test/index.html
@@ -3,8 +3,11 @@
 <head>
     <meta charset="UTF-8">
     <title>iView test page</title>
+    <link href="/test/dist/main.css" rel="stylesheet"></head>
 </head>
 <body>
     <div id="app"></div>
+    <script type="text/javascript" src="/test/dist/vendors.js"></script>
+    <script type="text/javascript" src="/test/dist/main.js"></script>
 </body>
 </html>
--
libgit2 0.21.4