-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
61 lines (57 loc) · 1.79 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
var HtmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'app.js'
},
// Replace our index.html
plugins: [ new HtmlWebpackPlugin({
title: 'Overtones',
template: './src/index.ejs',
hash: true // browser cache busting
}) ],
module: {
rules: [
{
// All our Elm code, particularly Main.elm
test: /\.elm$/,
exclude: [/elm_stuff/, /node_modules/, /src\/css\/.+\.elm$/],
use: [
{
loader: 'uglify-loader',
options: {}
},
{
loader: 'elm-webpack-loader',
options: {}
},
]
},
{
// We need this for Milligram and normalize.css and fonts
test: /\.css$/,
use: [
'style-loader',
{ loader:'css-loader', options: { minimize: true, sourceMap: true } },
]
},
{
// Special rule for compiling our elm-css and then passing it to the css-loader!style-loader
test: /src\/css\/Stylesheets\.elm$/,
use: [
'style-loader',
{ loader:'css-loader', options: { minimize: true } },
'elm-css-webpack-loader',
]
}
]
},
// Inline mode
devServer: {
contentBase: path.join(__dirname, 'dist'),
inline: true,
compress: true
}
}