UNPKG

react-upload-gallery

Version:

[![npm](https://img.shields.io/npm/v/react-upload-gallery.svg)](https://www.npmjs.com/package/react-upload-gallery) [![license](https://img.shields.io/npm/l/react-upload-gallery.svg)](LICENSE) [![Build Status](https://travis-ci.org/m-inan/react-upload-gal

34 lines (31 loc) 593 B
var path = require("path"); module.exports = { mode: "production", entry: { index: "./src/index.js", style: "./src/style.scss", }, output: { path: path.resolve(__dirname, "dist"), filename: "[name].js", libraryTarget: "commonjs2", }, module: { rules: [ { test: /\.(js)$/, exclude: /node_modules/, use: { loader: "babel-loader", }, }, { test: /\.*scss$/, use: ["style-loader", "css-loader", "sass-loader"], }, ], }, externals: { react: "commonjs react", }, };