move copyplugin to webpack.common

This commit is contained in:
grafixeyehero 2019-10-01 02:58:05 +03:00
parent 716ac36031
commit 2572de460b
3 changed files with 41 additions and 36 deletions

View file

@ -1,19 +1,24 @@
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: "production",
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'amd-require'
filename: "bundle.js",
path: path.resolve(__dirname, "dist"),
libraryTarget: "amd-require"
},
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
},
{
test: /\.(png|jpg|gif)$/i,
use: ["file-loader"]
}
]
},
plugins: [
new CopyPlugin([{
from: '**/*',
to: '.'
}])
]
});