
Move bulk of server .js file files to /server, all client related files live in /client (including /public), webpack scripts now live in /scripts, cleanup of paths in /client/src/js/index.js and webpack.js.
9 lines
209 B
JavaScript
9 lines
209 B
JavaScript
const merge = require('webpack-merge')
|
|
const common = require('./webpack.common.js')
|
|
|
|
module.exports = merge(common, {
|
|
devtool: 'inline-source-map',
|
|
devServer: {
|
|
contentBase: '../client/public'
|
|
}
|
|
})
|