forked from Limenius/liform-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
35 lines (33 loc) · 1.03 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
var path = require("path");
var config = {
entry: {
simple: "./docs/pages/examples/simple/index",
"all-widgets": "./docs/pages/examples/all-widgets/index",
"arrays": "./docs/pages/examples/arrays/index",
"change-layout": "./docs/pages/examples/change-layout/index",
"combining-schemas": "./docs/pages/examples/combining-schemas/index",
"custom-field-validation": "./docs/pages/examples/custom-field-validation/index",
"custom-themes": "./docs/pages/examples/custom-themes/index",
"initial-values": "./docs/pages/examples/initial-values/index",
"refs": "./docs/pages/examples/refs/index",
"validation": "./docs/pages/examples/validation/index",
},
output: {
filename: "[name]/bundle.js",
path: path.resolve(__dirname, "./docs/pages/examples/")
},
module: {
loaders: [
{
test: /\.jsx?/,
loaders: [ 'babel-loader' ],
exclude: /node_modules/
},
{
test: /\.json?/,
loaders: [ 'json-loader' ],
},
]
}
};
module.exports = config;