
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.
11 lines
226 B
JavaScript
11 lines
226 B
JavaScript
module.exports = {
|
|
dotfiles: 'ignore',
|
|
etag: false,
|
|
extensions: ['htm', 'html'],
|
|
index: false,
|
|
maxAge: '1s',
|
|
redirect: false,
|
|
setHeaders: function (res, path, stat) {
|
|
res.set('x-timestamp', Date.now())
|
|
}
|
|
}
|