Files: 99bc16e5212f7086422943407911f7c31443ab4c / app / static.js
224 bytesRaw
1 | import http from 'http' |
2 | |
3 | export default 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