-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
153 lines (139 loc) · 3.51 KB
/
webpack.config.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
require('dotenv').config();
const PUBLIC_PATH = process.env.PUBLIC_PATH || '';
const contentDataset = {
ru: {
periodsInfo: require('./src/content/ru/periodsInfo'),
dict: require('./src/content/ru/dict'),
history: require('./src/content/ru/history'),
victims: require('./src/content/ru/victims'),
deportations: require('./src/content/ru/deportations'),
kaugver: require('./src/content/ru/raimond-kaugver-history')
},
en: {
periodsInfo: require('./src/content/en/periodsInfo'),
dict: require('./src/content/en/dict'),
history: require('./src/content/en/history'),
victims: require('./src/content/en/victims'),
deportations: require('./src/content/en/deportations'),
kaugver: require('./src/content/en/raimond-kaugver-history')
}
};
const pages = [
'index',
'history-page',
'periods-page',
'victims-page',
'raimond-kaugver-history',
'deportation-page'
];
function getPagesArray() {
const result = [];
pages.forEach(page => {
Object.keys(contentDataset).forEach(lang => {
const pageConfig = new HtmlWebpackPlugin({
template: path.resolve(`./src/pages/${page}.twig`),
filename: page === 'index' ? path.resolve(`./dist/${lang}/index.html`) : path.resolve(`./dist/${lang}/${page}/index.html`),
templateParameters: {
...contentDataset[lang],
lang,
publicPath: PUBLIC_PATH
}
});
result.push(pageConfig)
});
const pageConfig = new HtmlWebpackPlugin({
template: path.resolve(`./src/pages/${page}.twig`),
filename: page === 'index' ? path.resolve(`./dist/index.html`) : path.resolve(`./dist/${page}/index.html`),
templateParameters: {
...contentDataset.ru,
lang: 'ru',
publicPath: PUBLIC_PATH
}
});
result.push(pageConfig)
});
return result;
}
module.exports = (env, args) => {
const plugins = [
new MiniCssExtractPlugin({
filename: '[name].css?h=[hash]'
}),
...getPagesArray(),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
new CopyWebpackPlugin({
patterns: [
{
from: './src/img/',
to: './img/'
}
]
}),
new CopyWebpackPlugin({
patterns: [
{
from: './src/fonts/',
to: './fonts/'
}
]
}),
new CopyWebpackPlugin({
patterns: [
{
from: './src/favicons/',
to: './favicons/'
}
]
}),
new CopyWebpackPlugin({
patterns: [
{
from: './src/browserconfig.xml',
to: './browserconfig.xml',
}
]
}),
new CopyWebpackPlugin({
patterns: [
{
from: './src/site.webmanifest',
to: './site.webmanifest',
}
]
})
];
return {
entry: './src/main.js',
module: {
rules: [
{
test: /\.twig$/,
loader: 'twig-loader'
},
{
test: /\.s?css$/,
exclude: /node_modules/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
url: false
}
},
'sass-loader'
]
}
]
},
plugins
};
};