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

26 lines (24 loc) 466 B
import path from 'path' import config, { minifyPlugins } from './webpack.demo.babel' export default { ...config, entry: './src/ReactPlayer', output: { path: path.join(__dirname, 'dist'), filename: 'ReactPlayer.js', library: 'ReactPlayer', libraryExport: 'default' }, externals: { 'react': 'React' }, module: { rules: [ { test: /\.js$/, loader: 'babel-loader' } ] }, plugins: minifyPlugins }