aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
blob: 891a3e5322c2c41f9d7871e665a2486ae1b7ff88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports = {
    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"
    ]
    },
    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]'
        ]}
	]
    }
};