diff --git a/webpack.config.js b/webpack.config.js index f3a9444..807bc4e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,19 +1,19 @@ var path = require('path'); module.exports = { - entry: './app.js', - output: { - filename: 'bundle.js', - path: here() - }, - context: here('js'), - module: { - loaders: [ - {test: /\.css$/, loaders: ['style', 'css']} - ] - } + entry: './app.js', + output: { + filename: 'bundle.js', + path: here() + }, + context: here('js'), + module: { + loaders: [ + {test: /\.css$/, loaders: ['style', 'css']} + ] + } }; function here(d) { - return d ? path.join(__dirname, d) : __dirname; + return d ? path.join(__dirname, d) : __dirname; }