51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
var path = require('path');
|
|
var webpack = require('webpack');
|
|
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
|
|
|
// Load .env
|
|
require('dotenv').config();
|
|
|
|
var definePlugin = new webpack.DefinePlugin({
|
|
__DEV__: JSON.stringify(JSON.parse(process.env.NODE_ENV !== 'production')),
|
|
__PRERELEASE__: JSON.stringify(JSON.parse(process.env.BUILD_PRERELEASE || 'false')),
|
|
SLACK_REDIRECT_URI: process.env.SLACK_REDIRECT_URI,
|
|
});
|
|
|
|
module.exports = {
|
|
output: {
|
|
path: path.join(__dirname, 'dist'),
|
|
filename: 'bundle.js',
|
|
publicPath: '/static/'
|
|
},
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.js$/,
|
|
loader: 'babel',
|
|
include: path.join(__dirname, 'src')
|
|
},
|
|
{ test: /\.json$/, loader: 'json-loader' },
|
|
{
|
|
test: /\.s?css$/,
|
|
loader: ExtractTextPlugin.extract('style-loader', 'css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!sass?sourceMap')
|
|
},
|
|
{ test: /\.(png|jpg|svg)$/, loader: 'url-loader' }, // inline base64 URLs for <=8k images, direct URLs for the rest
|
|
{
|
|
test: /\.woff$/,
|
|
loader: 'url-loader?limit=1&mimetype=application/font-woff&name=public/fonts/[name].[ext]'
|
|
},
|
|
]
|
|
},
|
|
resolve: {
|
|
root: path.join(__dirname, 'src'),
|
|
// you can now require('file') instead of require('file.json')
|
|
extensions: ['', '.js', '.json']
|
|
},
|
|
plugins: [
|
|
definePlugin,
|
|
new webpack.ProvidePlugin({
|
|
'fetch': 'imports?this=>global!exports?global.fetch!isomorphic-fetch'
|
|
}),
|
|
new webpack.ContextReplacementPlugin(/moment[\\\/]locale$/, /^\.\/(en)$/)
|
|
]
|
|
}; |