mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
20 lines
469 B
JavaScript
20 lines
469 B
JavaScript
![]() |
const path = require("path");
|
||
|
const common = require("./webpack.common");
|
||
|
const merge = require("webpack-merge");
|
||
|
const CopyPlugin = require('copy-webpack-plugin');
|
||
|
|
||
|
module.exports = merge(common, {
|
||
|
mode: "development",
|
||
|
output: {
|
||
|
filename: 'bundle.js',
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
libraryTarget: 'amd-require'
|
||
|
},
|
||
|
plugins: [
|
||
|
new CopyPlugin([{
|
||
|
from: '**/*',
|
||
|
to: '.'
|
||
|
}])
|
||
|
]
|
||
|
});
|