You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
401 B
21 lines
401 B
const config = require('../src/config')
|
|
|
|
config.set({
|
|
server: {
|
|
intercepts: {
|
|
'github1.githubassets.com': {
|
|
'.*': {
|
|
redirect: 'assets.fastgit.org',
|
|
test: 'https://github.githubassets.com/favicons/favicon.svg',
|
|
desc: '静态资源加速'
|
|
}
|
|
},
|
|
'github.githubassets.com': null
|
|
}
|
|
}
|
|
})
|
|
|
|
console.log(config.get())
|
|
|
|
config.reload()
|