-
Notifications
You must be signed in to change notification settings - Fork 12
/
webpack.config.js
52 lines (48 loc) · 1.2 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
const webpack = require('webpack');
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const moment = require('moment');
const config = {
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'build')
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
resolve: {
extensions: [".js", ".jsx"]
},
use: {
loader: "babel-loader"
}
}
]
},
plugins: [
new webpack.DefinePlugin({
timestamp: JSON.stringify(moment().utc().format()),
color: function(){
const colors = ['OVERSKYET', 'SOLOPPGANG', 'SKYFRITT', 'SOLNEDGANG', 'KVELD', 'NATT', 'REGN', 'GUL', 'GRØNN']
return JSON.stringify(colors[Math.floor(Math.random()*colors.length)])
}()
})
]
};
module.exports = (env, argv) => {
if (argv.mode === 'development') {
config.plugins.push(
new HtmlWebpackPlugin({
chunk: true,
title: 'Hotloading index.html for development',
template: './dev-index.html',
filename: 'dev-index.html'
}));
config.devServer = {
openPage: 'dev-index.html'
}
};
return config;
};