-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
executable file
·53 lines (50 loc) · 1.22 KB
/
webpack.config.js
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*eslint no-undef: */
/*global require */
var LiveReloadPlugin = require('webpack-livereload-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var path = require('path')
var sassLoaders = [
'css-loader',
'sass-loader?indentedSyntax=sass&includePaths[]=' + path.resolve(__dirname, './src')
]
var config = {
entry: {
app: ['./src/js/index.jsx']
},
module: {
loaders: [
{
test: /\.jsx$/,
exclude: /node_modules/,
loader: 'jsx-loader?insertPragma=React.DOM&harmony'
},
{
test: /\.sass$/,
loader: ExtractTextPlugin.extract('style-loader', sassLoaders.join('!'))
},
{
test: /\.css$/,
loader: "style-loader!css-loader"
}
]
},
output: {
filename: '[name].js',
path: path.join(__dirname, './public'),
publicPath: '/public'
},
plugins: [
new ExtractTextPlugin('[name].css'),
new LiveReloadPlugin()
],
externals: {
//don't bundle the 'react' npm package with our bundle.js
//but get it from a global 'React' variable
'react': 'React'
},
resolve: {
extensions: ['', '.js', '.sass', 'jsx'],
root: [path.join(__dirname, './src')]
}
}
module.exports = config