mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-12 17:18:44 +08:00
18 lines
272 B
JavaScript
18 lines
272 B
JavaScript
module.exports = {
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(js|jsx)$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader'
|
|
}
|
|
}
|
|
]
|
|
},
|
|
mode: 'development'
|
|
// options: {
|
|
// sourceType: 'unambiguous'
|
|
// }
|
|
};
|