@gravatar-com/quick-editor
Version:
A lightweight library to provide seamless Gravatar profile management for third-party sites
19 lines (16 loc) • 367 B
JavaScript
const HtmlWebpackPlugin = require( 'html-webpack-plugin' );
const commonConfig = require( './config.common' );
module.exports = {
...commonConfig,
entry: './playground/index.ts',
devServer: {
open: true,
watchFiles: [ 'playground' ],
},
plugins: [
...commonConfig.plugins,
new HtmlWebpackPlugin( {
template: './playground/index.html',
} ),
],
};