UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

21 lines (19 loc) 442 B
import ExtractTextPlugin from "extract-text-webpack-plugin"; import OptimizeCssAssetsPlugin from "../../../src/"; module.exports = { entry: "./index", module: { rules: [ { test: /\.css$/, use: ExtractTextPlugin.extract({ fallback: { loader: "style-loader" }, use: { loader: "css-loader" } }) } ] }, plugins: [new ExtractTextPlugin("file.css")] };