UNPKG

294 BJavaScriptView Raw
1module.exports = {
2 entry: './index.jsx',
3 output: {
4 publicPath: 'http://localhost:9090/assets'
5 },
6 module: {
7 loaders: require('./loaders.config')
8 },
9 externals: {
10 'react': 'React'
11 },
12 resolve: {
13 extensions: ['', '.js', '.jsx']
14 }
15}
\No newline at end of file