-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
37 lines (36 loc) · 1003 Bytes
/
webpack.config.js
File metadata and controls
37 lines (36 loc) · 1003 Bytes
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
const path = require('path');
const FileIncludeWebpackPlugin = require('file-include-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
mode: 'production',
entry: './script.js',
output: {
filename: 'script.js',
path: path.resolve(__dirname, 'docs'),
},
module: {
rules: [
{
test: /\.scss?$/,
use: [MiniCssExtractPlugin.loader,'css-loader', 'sass-loader'],
},
{
test: /\.(png|jpe?g|gif|webp|ico)$/i,
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
}
},
]
},
plugins: [
new FileIncludeWebpackPlugin({
source: './pages',
replace: [{
regex: /\[\[FILE_VERSION]]/g,
to: 'v=1.0.0',
}],
}),
new MiniCssExtractPlugin(),
],
};