Files
hiring-test-one/example/built-in/rewrite/lws.config.js
2017-03-19 23:13:41 +00:00

9 lines
293 B
JavaScript

module.exports = {
rewrite: [
{ from: '/css/*', 'to': '/build/styles/$1' },
{ from: '/npm/*', 'to': 'http://registry.npmjs.org/$1' },
{ from: '/broken/*', 'to': 'http://localhost:9999' },
{ from: '/:user/repos/:name', 'to': 'https://api.github.com/repos/:user/:name' }
]
}