react-expand-animated
Version:
The expand component that animate the height of child component when toggling
27 lines (25 loc) • 457 B
JavaScript
const HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
mode: 'development',
entry: './example/index.js',
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: 'babel-loader',
},
],
},
resolve: {
extensions: ['.js', '.jsx'],
},
plugins: [
new HtmlWebpackPlugin({
template: './example/index.html',
}),
],
devServer: {
port: 3000,
},
};