1
0
Fork 0
docsearch/webpack.serve.config.babel.js
Vincent Voyer 3c98ea5882 chore(stack update): update the whole docsearch stack (#173)
* chore(stack update): update the whole docsearch stack

In an effort to reduce our stack diversity I am moving docsearch to:
- latest eslint
- prettier
- webpack 2
- babel 6 (babel 7 is soon to be released, we were on babel 5)
- babel-preset-env (support: IE >=9, Two latest version of evergreen
browsers).
- jest

* chore(contrib): remove develop branch, cc @redox
2017-03-17 16:22:00 +01:00

14 lines
283 B
JavaScript

import baseConfig from './webpack.config.jsdelivr.babel';
import { join } from 'path';
export default {
...baseConfig,
devServer: {
contentBase: join(__dirname, 'dist/cdn'),
host: '0.0.0.0',
compress: true,
hot: true,
inline: true,
noInfo: true,
},
};