git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: b0260714125b1a814ed76eaca838d164ae23101d

Files: b0260714125b1a814ed76eaca838d164ae23101d / 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