summaryrefslogtreecommitdiff
path: root/webpack.config.js
blob: 87ad43bca4f4b8c635c08f1b1c0ec147351ccebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports = {
    entry: './geshem.js',
    output: {
        path: __dirname,
        filename: 'static/js/bundle.js',
    },
    module: {
        loaders: [
            { test: /\.js$/, exclude: /node_modules/, loader: 'babel?presets[]=react,presets[]=es2015,presets[]=stage-0' },
            { test: /\.css$/, loader: 'style!css' },
            { test: /\.scss$/, loader: 'style!css!sass' }
        ]
    }
}