-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
82 lines (77 loc) · 1.86 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
var path = require("path");
var webpack = require("webpack");
var merge = require("webpack-merge");
var HtmlWebpackPlugin = require("html-webpack-plugin");
var autoprefixer = require("autoprefixer");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var CopyWebpackPlugin = require("copy-webpack-plugin");
const dev = "development";
// entry and output path/filename variables
const entryPath = path.join(__dirname, "src/index.js");
const outputPath = path.join(__dirname, "dist");
const outputFilename = "[name].js";
console.log("WEBPACK GO! Building");
// common webpack config (valid for dev and prod)
var commonConfig = {
output: {
path: outputPath,
filename: `static/js/${outputFilename}`
},
resolve: {
extensions: [".js", ".elm"],
modules: ["node_modules"]
},
module: {
noParse: /\.elm$/,
rules: [
{
test: /\.(eot|ttf|woff|woff2|svg)$/,
use: "file-loader?publicPath=../../&name=static/css/[hash].[ext]"
}
]
},
plugins: [
new webpack.LoaderOptionsPlugin({
options: {
postcss: [autoprefixer()]
}
})
/*
new HtmlWebpackPlugin({
template: "src/index.html",
inject: "head",
filename: "index.html"
})
*/
]
};
module.exports = merge(commonConfig, {
entry: ["webpack-dev-server/client?http://localhost:8080", entryPath],
devServer: {
// serve index.html in place of 404 responses
historyApiFallback: true,
contentBase: "./src",
hot: true
},
module: {
rules: [
{
test: /\.elm$/,
exclude: [/elm-stuff/, /node_modules/],
use: [
{
loader: "elm-webpack-loader",
options: {
verbose: true,
debug: true
}
}
]
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"]
}
]
}
});