react-router-pageslider
Version:
React Router PageSlider is implemented with react-router, based on hashHistory. served as mixin of components. Making page slide as route changes.
22 lines • 478 B
JavaScript
var webpack = require("webpack"),
WebpackNotifierPlugin = require('webpack-notifier');
module.exports = {
entry: {
demo: './demo',
libs: './libs',
test: './test'
},
output: {
filename: "[name].bundle.js"
},
plugins: [/*new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
}), */new WebpackNotifierPlugin()],
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel"}
]
}
};