apple-touch-icons-webpack-plugin
Version:
a webpack plugin for automatically creating apple touch icons and launch screens
15 lines (14 loc) • 338 B
JavaScript
const { resolve } = require("path");
const AppleTouchIconsPlugin = require("./src/index");
module.exports = {
entry: resolve(__dirname, "src/index.js"),
output: {
path: resolve(__dirname, "bin"),
filename: "bundle.js"
},
node: {
child_process: "empty",
fs: "empty"
},
plugins: [new AppleTouchIconsPlugin()]
};