react-ui-toggler
Version:
45 lines (43 loc) • 1.21 kB
JavaScript
const webpack = require('webpack');
const path = require('path');
const OpenBrowserPlugin = require('open-browser-webpack-plugin');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
devServer: {
historyApiFallback: true,
hot: true,
inline: true,
contentBase: './app',
port: 1400
},
entry: path.resolve(__dirname, 'app/main.js'),
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: '/',
filename: './index.js'
},
module: {
loaders: [
{
test: /\.scss$/,
include: path.resolve(__dirname, 'app'),
use: ExtractTextPlugin.extract({
fallback: 'style-loader',
use: ["css-loader", "sass-loader"],
})
},
{ test: /\.js[x]?$/, include: path.resolve(__dirname, 'app'), exclude: /node_modules/, loader: 'babel-loader' }
]
},
resolve: {
extensions: ['.js', '.jsx', '.scss']
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin({
filename: 'react-ui-toggler.css',
allChunks: true
}),
new OpenBrowserPlugin({ url: 'http://localhost:1400' })
]
};