git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: 2feb98c1e6e7d51eb76ec441dc2a134829471edd

Files: 2feb98c1e6e7d51eb76ec441dc2a134829471edd / app / static.js

241 bytesRaw
1import http from 'http'
2
3export default module.exports = function createStatic (config) {
4 const ecstatic = config.livereload ?
5 require('ecstatic-lr') : require('ecstatic')
6
7 return http.createServer(
8 ecstatic(config.static)
9 )
10}
11

Built with git-ssb-web