forked from stfnhmplr/pagekit-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·28 lines (25 loc) · 942 Bytes
/
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
module.exports = [
{
entry: {
"slideshow": "./app/views/slideshow", //fake
"gallery": "./app/views/gallery",
"gallery-edit": "./app/views/admin/gallery-edit",
"gallery-index": "./app/views/admin/gallery-index",
"editor-plugin": "./app/views/admin/editor-plugin",
"tinymce-plugin": "./app/views/admin/tinymce-plugin",
"gallery-dashboard": "./app/components/gallery-dashboard.vue",
"settings": "./app/views/admin/settings",
"link-gallery": "./app/components/link-gallery.vue",
"gallery-meta": "./app/components/gallery-meta.vue",
"gallery-images": "./app/components/gallery-images.vue"
},
output: {
filename: "./app/bundle/[name].js"
},
module: {
loaders: [
{ test: /\.vue$/, loader: "vue" }
]
}
}
];