Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Created April 27, 2017 18:39
Show Gist options
  • Save igmoweb/450f25af1e0ff533b5f5537ade7dd6d0 to your computer and use it in GitHub Desktop.
Save igmoweb/450f25af1e0ff533b5f5537ade7dd6d0 to your computer and use it in GitHub Desktop.
First webpack config for WP Plugin
const path = require( 'path' );
module.exports = {
entry: [
'./src/index.js'
],
output: {
filename: 'app.js',
path: path.resolve( __dirname, 'build' )
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment