aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
blob: 89366a2ae5ff1c896785193ddf753d8011ac8856 (plain) (blame)
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
var webpack = require("webpack");
module.exports = {
    devtool: 'eval',
    entry: {
    "vendor": ['react', 'react-dom', 'react-markdown', 'whatwg-fetch'],
    "app": [
        'file-loader?name=index.html!./src/views/index.html',
        __dirname + "/src/app.js",
        __dirname + "/src/style/main.css",
        'webpack-dev-server/client?http://localhost:3000',
        'webpack/hot/only-dev-server'
    ]
    },
    output: {
        path: __dirname + "/public",
        filename: "[name].js"
    },
    module: {
        rules: [
            { test: /\.css$/, loader: "style-loader!css-loader" },
            { test: /\.js$/, exclude: /node_modules/, loader: "babel-loader" },
            { test: /\.(jpe?g|png|gif|svg)$/i, loaders: [
            'file-loader?hash=sha512&digest=hex&name=[hash].[ext]'
        ]}
	]
    },
    plugins: [
        new webpack.HotModuleReplacementPlugin()
    ]
};