You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
446 B

1 year ago
  1. const defaultConfig = require("@wordpress/scripts/config/webpack.config");
  2. module.exports = {
  3. ...defaultConfig,
  4. entry: {
  5. 'customizer': './inc/customizer/react/src/index.js', // 'name' : 'path/file.ext'.
  6. 'meta': './inc/meta/react/src/index.js', // 'name' : 'path/file.ext'.
  7. 'dashboard': './inc/dashboard/react/src/index.js', // 'name' : 'path/file.ext'.
  8. },
  9. output: {
  10. filename: '[name].js',
  11. path: __dirname + '/assets/js/admin'
  12. },
  13. };