UNPKG

maestro-react-player

Version:

A React component for playing a variety of URLs, including file paths, YouTube, Facebook, Twitch, SoundCloud, Streamable, Vimeo, Wistia and DailyMotion

25 lines (23 loc) 486 B
import path from 'path' import config, { minifyPlugins } from './webpack.demo.babel' export default { ...config, entry: './src/standalone.js', output: { path: path.join(__dirname, 'dist'), filename: 'ReactPlayer.standalone.js', library: 'renderReactPlayer' }, module: { rules: [ { test: /\.js$/, loader: 'babel-loader', options: { plugins: ['add-module-exports'] } } ] }, plugins: minifyPlugins }