Created
December 29, 2016 20:07
-
-
Save anonymous/1609c6cdf8dbf915e0cc9532db8b85c5 to your computer and use it in GitHub Desktop.
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
import webpack from 'webpack'; | |
import HtmlWebpackPlugin from 'html-webpack-plugin'; | |
import autoprefixer from 'autoprefixer'; | |
import path from 'path'; | |
const cssModulePaths = [ | |
path.resolve(__dirname, 'node_modules/react-toolbox'), | |
path.resolve(__dirname, 'src'), | |
]; | |
export default { | |
resolve: { | |
extensions: ['', '.js', '.jsx', '.json'] | |
}, | |
debug: true, | |
devtool: 'eval-source-map', // more info:https://webpack.github.io/docs/build-performance.html#sourcemaps and https://webpack.github.io/docs/configuration.html#devtool | |
noInfo: true, // set to false to see a list of every file being bundled. | |
entry: [ | |
// must be first entry to properly set public path | |
'./src/webpack-public-path', | |
'webpack-hot-middleware/client?reload=true', | |
path.resolve(__dirname, 'src/index.js') // Defining path seems necessary for this to work consistently on Windows machines. | |
], | |
target: 'web', // necessary per https://webpack.github.io/docs/testing.html#compile-and-test | |
output: { | |
path: path.resolve(__dirname, 'dist'), // Note: Physical files are only output by the production build task `npm run build`. | |
publicPath: '/', | |
filename: 'bundle.js' | |
}, | |
plugins: [ | |
new webpack.DefinePlugin({ | |
'process.env.NODE_ENV': JSON.stringify('development'), // Tells React to build in either dev or prod modes. https://facebook.github.io/react/downloads.html (See bottom) | |
__DEV__: true | |
}), | |
new webpack.HotModuleReplacementPlugin(), | |
new webpack.NoErrorsPlugin(), | |
new HtmlWebpackPlugin({ // Create HTML file that includes references to bundled CSS and JS. | |
template: 'src/index.ejs', | |
minify: { | |
removeComments: true, | |
collapseWhitespace: true | |
}, | |
inject: true | |
}) | |
], | |
module: { | |
loaders: [ | |
{test: /\.jsx?$/, exclude: /node_modules/, loaders: ['babel']}, | |
{test: /\.eot(\?v=\d+.\d+.\d+)?$/, loader: 'file'}, | |
{test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'url?limit=10000&mimetype=application/font-woff'}, | |
{test: /\.[ot]tf(\?v=\d+.\d+.\d+)?$/, loader: 'url?limit=10000&mimetype=application/octet-stream'}, | |
{test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: 'url?limit=10000&mimetype=image/svg+xml'}, | |
{test: /\.(jpe?g|png|gif)$/i, loader: 'file?name=[name].[ext]'}, | |
{test: /\.ico$/, loader: 'file?name=[name].[ext]'}, | |
// {test: /(\.css|\.scss)$/, loaders: ['style', 'css?sourceMap', 'postcss', 'sass?sourceMap']}, | |
{ | |
test: /(\.css|\.scss)$/, | |
loaders: [ | |
'style', | |
'css?sourceMap=true&modules=true&importLoaders=1&localIdentName=[name]_[local]_[hash:base64:5]', | |
'postcss', | |
'resolve-url', | |
'sass?sourceMap', | |
'toolbox', | |
], | |
// Opt-In to CSS modules | |
include: cssModulePaths, | |
}, | |
{ | |
test: /(\.css|\.scss)$/, | |
loaders: [ | |
'style', | |
'css?sourceMap=true&modules=false', | |
'postcss', | |
'resolve-url', | |
'sass?sourceMap' | |
], | |
// Opt-Out to CSS modules | |
exclude: cssModulePaths, | |
}, | |
{test: /\.json$/, loader: "json"} | |
] | |
}, | |
toolbox: { | |
// theme: path.resolve(__dirname, 'theme.scss') | |
}, | |
postcss: ()=> [autoprefixer] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment