Last active
February 1, 2017 02:06
-
-
Save jslnriot/7c99a90230928db13109f81b089f4bd1 to your computer and use it in GitHub Desktop.
webpack 2 example config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const webpack = require('webpack') | |
path = require('path'), | |
ExtractTextPlugin = require("extract-text-webpack-plugin"), | |
HTMLWebpackPlugin = require('html-webpack-plugin'), | |
ExtractCSS = new ExtractTextPlugin("css/[name].[chunkhash].css"), | |
CopyWebpackPlugin = require("copy-webpack-plugin"); | |
module.exports = { | |
entry: { | |
vendor: [ | |
'script-loader!jquery/dist/jquery.js', | |
'script-loader!tether/dist/js/tether.js', | |
'script-loader!bootstrap/dist/js/bootstrap.js' | |
], | |
bundle: [ | |
'webpack-dev-server/client?http://localhost:8080', | |
'./src/index.js', | |
], | |
site: './src/css/site.scss', | |
vendorCSS: './src/css/vendor.scss' | |
}, | |
output: { | |
path: path.join(__dirname, 'dist'), | |
filename: '[name].[chunkhash].js' | |
}, | |
module: { | |
rules: [ | |
{ | |
use: 'babel-loader', | |
test: /\.js$/, | |
exclude: /node_modules/ | |
}, | |
{ | |
test: /\.scss/, | |
loader: ExtractTextPlugin.extract({ | |
fallbackLoader: 'style-loader', | |
loader: "css-loader!sass-loader", | |
}), | |
}, | |
{ | |
test: /\.(png|woff|woff2|eot|ttf|svg)$/, | |
loader: 'url-loader?limit=100000' | |
} | |
] | |
}, | |
devServer: { | |
contentBase: './dist', | |
inline: true, | |
historyApiFallback: true, | |
headers: {'Access-Control-Allow-Origin': '*'} | |
}, | |
plugins: [ | |
new webpack.ProvidePlugin({ | |
'$': 'jquery', | |
'jQuery': 'jquery' | |
}), | |
ExtractCSS, | |
new CopyWebpackPlugin([ | |
{ | |
from: './src/images/', | |
to: 'images/' | |
}, | |
], | |
{ | |
copyUnmodified: true | |
} | |
), | |
new webpack.DefinePlugin({ | |
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV) | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
names: ['vendor', 'manifest'] | |
}), | |
new HTMLWebpackPlugin({ | |
template: 'src/index.html' | |
}), | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment