1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- var webpack = require('webpack');
- var config = require('./webpack.base.config');
- var HtmlWebpackPlugin = require('html-webpack-plugin');
- var ExtractTextPlugin = require("extract-text-webpack-plugin");
- config.output.path = config.extraPath + '/build';
- config.output.publicPath = 'build/';
- config.output.filename = '[name].js?[hash]';
- config.output.chunkFilename = '[name].chunk.js?[hash]';
- config.vue = {
- loaders : {
- css: ExtractTextPlugin.extract(
- "style-loader",
- "css-loader?sourceMap",
- {
- publicPath: 'build/',
- }
- ),
- less: ExtractTextPlugin.extract(
- 'vue-style-loader',
- 'css-loader!less-loader'
- ),
- sass: ExtractTextPlugin.extract(
- 'vue-style-loader',
- 'css-loader!sass-loader'
- )
- }
- }
- config.plugins = (config.plugins || []).concat([
- new ExtractTextPlugin("[name].css?[hash]",{ allChunks : true, resolve : ['modules'] }),
- new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js?[hash]'),
- new webpack.DefinePlugin({
- 'process.env': {
- NODE_ENV: '"production"'
- }
- }),
- new webpack.optimize.UglifyJsPlugin({
- compress: {
- warnings: false
- }
- }),
- new HtmlWebpackPlugin({
- filename: '../index.html',
- template: './index.ejs',
- inject: false
- }),
- new webpack.ProvidePlugin({
- $: "jquery",
- jQuery: "jquery",
- "window.jQuery": "jquery"
- })
- ]);
- module.exports = config;
|