UNPKG

react-js-banner

Version:

React JS Banner component customizable with auto hide option

27 lines (26 loc) 521 B
var path = require("path"); module.exports = { mode: "production", entry: "./src/index.js", output: { path: path.resolve("build"), filename: "index.js", libraryTarget: "commonjs2" }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" }, { test: /\.css$/, loader: "style-loader" }, { test: /\.css$/, loader: "css-loader" } ] }, externals: { react: "react" } };