@proca/widget
Version:
Proca is an open-source campaign toolkit designed to empower activists and organisations in their digital advocacy efforts. It provides a flexible and customisable platform for creating and managing online petitions, email campaigns, and other forms of di
20 lines (18 loc) • 373 B
JavaScript
var path = require("path");
module.exports = webpack => {
webpack.module.rules.push({
test: /\.mjs$/,
include: /node_modules/,
type: "javascript/auto",
});
webpack.module.rules.unshift({
test: /actionPage\.js$/,
use: [
{
loader: path.resolve("webpack/actionPage.js"),
options: {},
},
],
});
return webpack;
};