mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-12 17:18:44 +08:00
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
const baseConfig = require('./webpack.config');
|
|
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: './containers/ClientApp.js',
|
|
output: {
|
|
filename: 'client.bundle.js',
|
|
path: path.resolve(__dirname, '../public/assets')
|
|
},
|
|
...baseConfig
|
|
};
|