-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.local.config.js
72 lines (66 loc) · 2.24 KB
/
webpack.local.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
var autoprefixer = require("autoprefixer");
var webpack = require("webpack");
var baseConfig = require("./webpack.base.config");
var BundleTracker = require("webpack-bundle-tracker");
var path = require("path");
var nodeModulesDir = path.resolve(__dirname, "node_modules");
baseConfig[0].mode = "development";
baseConfig[1].mode = "development";
baseConfig[1].entry = [
"webpack-dev-server/client?http://localhost:3000",
"webpack/hot/only-dev-server",
"whatwg-fetch",
"@babel/polyfill",
"./frontend/js/index"
];
baseConfig[0].output["publicPath"] = "http://localhost:3000/frontend/bundles/";
baseConfig[1].output = {
path: path.resolve("./frontend/bundles/"),
publicPath: "http://localhost:3000/frontend/bundles/",
filename: "[name].js"
};
baseConfig[1].module.rules.push(
{
test: /\.jsx?$/,
exclude: [nodeModulesDir],
loader: require.resolve("babel-loader")
},
{
test: /\.(woff(2)?|eot|ttf)(\?v=\d+\.\d+\.\d+)?$/,
loader: "url-loader?limit=100000"
}
);
baseConfig[1].plugins = [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.NoEmitOnErrorsPlugin(), // don't reload if there is an error
new BundleTracker({
filename: "./webpack-stats.json"
}),
new webpack.LoaderOptionsPlugin({
options: {
context: __dirname,
postcss: [autoprefixer]
}
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery",
Tether: "tether",
"window.Tether": "tether",
Popper: ["popper.js", "default"],
Alert: "exports-loader?Alert!bootstrap/js/dist/alert",
Button: "exports-loader?Button!bootstrap/js/dist/button",
Carousel: "exports-loader?Carousel!bootstrap/js/dist/carousel",
Collapse: "exports-loader?Collapse!bootstrap/js/dist/collapse",
Dropdown: "exports-loader?Dropdown!bootstrap/js/dist/dropdown",
Modal: "exports-loader?Modal!bootstrap/js/dist/modal",
Popover: "exports-loader?Popover!bootstrap/js/dist/popover",
Scrollspy: "exports-loader?Scrollspy!bootstrap/js/dist/scrollspy",
Tab: "exports-loader?Tab!bootstrap/js/dist/tab",
Tooltip: "exports-loader?Tooltip!bootstrap/js/dist/tooltip",
Util: "exports-loader?Util!bootstrap/js/dist/util"
})
];
module.exports = baseConfig;