const webpack = require('webpack'); const path = require('path'); const ExtractTextPlugin = require("extract-text-webpack-plugin"); const HtmlWebpackPlugin = require('html-webpack-plugin'); const WebpackDevServer = require('webpack-dev-server'); let theme = { '@primary-color': '#58a3ff', '@link-color': '#58a3ff' }; module.exports = { entry: { 'user/index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/index.js' ], 'user/login': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/login.js' ], 'user/signIn': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/signIn.js' ], 'user/certify': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/certify.js' ], 'user/groupCertify': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/groupCertify.js' ], //user-account 'user/account/index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/account/index.js' ], 'user/account/set': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/account/set.js' ], 'user/account/services': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/user/account/services.js' ], //admin 'admin/index': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/index.js' ], 'admin/login': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/login.js' ], 'admin/userManage': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/userManage.js' ], 'admin/servicesManage/patent': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/servicesManage/patent.js' ], 'admin/servicesManage/copyright': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/servicesManage/copyright.js' ], 'admin/servicesManage/highTech': ['webpack-dev-server/client?http://127.0.0.1:80', // WebpackDevServer host and port 'webpack/hot/only-dev-server', './js/admin/servicesManage/highTech.js' ] //vendors: ['jquery','antd'] //path.resolve(__dirname, './js/index.js'), }, output: { path: path.resolve(__dirname, './build'), filename: '[name].js' }, module: { rules: [{ test: /\.jsx?$/, exclude: /node_modules/, use: { loader: 'babel-loader', options: { "presets": ["es2015", "react"], "plugins": [ ["antd", { "style": true }] ] } } }, { test: /\.less$/, use: ExtractTextPlugin.extract({ fallback: 'style-loader', use: [{ loader: 'css-loader', options: { importLoaders: 1 } }, { loader: 'less-loader', options: { modifyVars: theme } }] }) }, { test: /\.(png|jpg)$/, use: [{ loader: 'url-loader', options: { limit: 8192, name: '[path][name].[ext]' } }] } ] }, resolve: { extensions: ['.js', '.jsx'] }, plugins: [ new ExtractTextPlugin({ filename: "[name].css", disable: false, allChunks: true }), //user new HtmlWebpackPlugin({ title: '用户首页', filename: 'user/index.html', template: './template/template.html', chunks: ['user/index', 'vendors'] }), new HtmlWebpackPlugin({ title: '用户登录', filename: 'user/login.html', template: './template/template.html', chunks: ['user/login', 'vendors'] }), new HtmlWebpackPlugin({ title: '用户注册', filename: 'user/signIn.html', template: './template/template.html', chunks: ['user/signIn', 'vendors'] }), new HtmlWebpackPlugin({ title: '个人用户认证', filename: 'user/certify.html', template: './template/template.html', chunks: ['user/certify', 'vendors'] }), new HtmlWebpackPlugin({ title: '团体用户认证', filename: 'user/groupCertify.html', template: './template/template.html', chunks: ['user/groupCertify', 'vendors'] }), //user-account new HtmlWebpackPlugin({ title: '用户中心-首页', filename: 'user/account/index.html', template: './template/template.html', chunks: ['user/account/index', 'vendors'] }), new HtmlWebpackPlugin({ title: '用户中心-设置', filename: 'user/account/set.html', template: './template/template.html', chunks: ['user/account/set', 'vendors'] }), new HtmlWebpackPlugin({ title: '用户中心-科技服务', filename: 'user/account/services.html', template: './template/template.html', chunks: ['user/account/services', 'vendors'] }), //admin new HtmlWebpackPlugin({ title: '管理员-首页', filename: 'admin/index.html', template: './template/template.html', chunks: ['admin/index', 'vendors'] }), new HtmlWebpackPlugin({ title: '管理员-登录', filename: 'admin/login.html', template: './template/template.html', chunks: ['admin/login', 'vendors'] }), new HtmlWebpackPlugin({ title: '管理员-用户管理', filename: 'admin/userManage.html', template: './template/template.html', chunks: ['admin/userManage', 'vendors'] }), //admin-servicesManage new HtmlWebpackPlugin({ title: '管理员-科技服务管理-专利', filename: 'admin/servicesManage/patent.html', template: './template/template.html', chunks: ['admin/servicesManage/patent', 'vendors'] }), new HtmlWebpackPlugin({ title: '管理员-科技服务管理-软著', filename: 'admin/servicesManage/copyright.html', template: './template/template.html', chunks: ['admin/servicesManage/copyright', 'vendors'] }), new HtmlWebpackPlugin({ title: '管理员-科技服务管理-高企', filename: 'admin/servicesManage/highTech.html', template: './template/template.html', chunks: ['admin/servicesManage/highTech', 'vendors'] }), //这个使用uglifyJs压缩你的js代码 //new webpack.optimize.UglifyJsPlugin({minimize: true}), //把入口文件里面的数组打包成verdors.js //new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'), ] };