-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.default.js
45 lines (40 loc) · 1.17 KB
/
webpack.default.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const path = require('path');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyPlugin = require('copy-webpack-plugin');
const {merge} = require('webpack-merge');
const commonConfig = require('./webpack.common');
const config = {
name: 'Default Theme',
output: {
path: path.resolve(__dirname, 'bin'),
filename: 'default/assets/js/main.js'
},
module: {
rules: [
{
test: /\.(png|svg)$/,
loader: 'file-loader',
options: {
outputPath: 'default/assets/images',
publicPath: '../images',
name: '[name].[ext]',
},
},
]
},
plugins: [
new MiniCssExtractPlugin({
filename: 'default/assets/css/main.css',
}),
new CopyPlugin({
patterns: [
{
context: path.resolve(__dirname, 'src/default'),
from: '**/*.hbs',
to: path.resolve(__dirname, 'bin/default'),
},
],
}),
]
}
module.exports = merge(commonConfig, config);