File size: 829 Bytes
fe66731 |
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 |
var path = require("path");
var webpack = require("webpack");
var CopyWebpackPlugin = require("copy-webpack-plugin");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
cache: true,
entry: {
webvowl: "./src/webvowl/js/entry.js",
"webvowl.app": "./src/app/js/entry.js"
},
output: {
path: path.join(__dirname, "deploy/"),
publicPath: "",
filename: "js/[name].js",
chunkFilename: "js/[chunkhash].js",
libraryTarget: "assign",
library: "[name]"
},
module: {
loaders: [
{test: /\.css$/, loader: ExtractTextPlugin.extract("style-loader", "css-loader")}
]
},
plugins: [
new CopyWebpackPlugin([
{context: "src/app", from: "data/**/*"}
]),
new ExtractTextPlugin("css/[name].css"),
new webpack.ProvidePlugin({
d3: "d3"
})
],
externals: {
"d3": "d3"
}
};
|