You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
580 B
24 lines
580 B
1 year ago
|
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
||
|
|
||
|
module.exports = {
|
||
|
configureWebpack: {
|
||
|
plugins: [
|
||
|
// eslint-disable-next-line no-undef
|
||
|
new CopyWebpackPlugin([
|
||
|
// patterns:[
|
||
|
{
|
||
|
from: 'node_modules/@liveqing/liveplayer/dist/component/crossdomain.xml'
|
||
|
},
|
||
|
{
|
||
|
from: 'node_modules/@liveqing/liveplayer/dist/component/liveplayer.swf'
|
||
|
},
|
||
|
{
|
||
|
from: 'node_modules/@liveqing/liveplayer/dist/component/liveplayer-lib.min.js',
|
||
|
to: 'js/'
|
||
|
}
|
||
|
// ]
|
||
|
])
|
||
|
]
|
||
|
}
|
||
|
}
|