29 lines
572 B
JavaScript
29 lines
572 B
JavaScript
|
const path = require("path")
|
||
|
|
||
|
const webpack = require('webpack')
|
||
|
const EsmWebpackPlugin = require("@purtuga/esm-webpack-plugin")
|
||
|
|
||
|
const clientFiles = [
|
||
|
'embed-client-plugin.js',
|
||
|
'video-watch-client-plugin.js',
|
||
|
'video-edit-client-plugin.js'
|
||
|
]
|
||
|
|
||
|
let config = clientFiles.map(f => ({
|
||
|
entry: "./client/" + f,
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "./dist"),
|
||
|
filename: "./" + f,
|
||
|
library: "script",
|
||
|
libraryTarget: "var"
|
||
|
},
|
||
|
plugins: [
|
||
|
new EsmWebpackPlugin()
|
||
|
],
|
||
|
externals: {
|
||
|
'video.js': 'window.videojs'
|
||
|
}
|
||
|
}))
|
||
|
|
||
|
module.exports = config
|