11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
const defaultConfig = require("@wordpress/scripts/config/webpack.config");
|
|
const path = require("path");
|
|
|
|
module.exports = {
|
|
...defaultConfig,
|
|
entry: {
|
|
index: path.resolve(process.cwd(), "src", "index.js"),
|
|
"focal-point-inline": path.resolve(process.cwd(), "src", "focal-point-inline.js"),
|
|
},
|
|
};
|