webpack/test/configCases/parsing/extended-api/webpack.config.js

10 lines
155 B
JavaScript
Raw Normal View History

"use strict";
const webpack = require("../../../../");
2014-08-25 15:50:26 +08:00
module.exports = {
entry: {
other: "./index"
},
2018-02-25 09:00:20 +08:00
plugins: [new webpack.ExtendedAPIPlugin()]
2017-01-11 17:51:58 +08:00
};