mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
15 lines
294 B
JavaScript
15 lines
294 B
JavaScript
module.exports = {
|
|
entry: './index.jsx',
|
|
output: {
|
|
publicPath: 'http://localhost:9090/assets'
|
|
},
|
|
module: {
|
|
loaders: require('./loaders.config')
|
|
},
|
|
externals: {
|
|
'react': 'React'
|
|
},
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx']
|
|
}
|
|
} |