We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aba0a20 commit 0b4b3c0Copy full SHA for 0b4b3c0
src/daemon/routers/index.js
@@ -5,10 +5,6 @@ const log = require('../log')
5
module.exports = function(group) {
6
const router = express.Router()
7
8
- function index(req, res) {
9
- res.render('index')
10
- }
11
-
12
function pac(req, res) {
13
log('Serve proxy.pac')
14
if (conf.proxy) {
@@ -19,7 +15,6 @@ module.exports = function(group) {
19
15
}
20
16
21
17
router
22
- .get('/', index)
23
18
.get('/proxy.pac', pac)
24
.get(
25
'/:id',
src/daemon/views/_error.pug
@@ -4,7 +4,6 @@ head
4
meta(charset='utf-8')
meta(name='viewport', content='width=device-width, initial-scale=1')
link(rel='icon', type='image/png', href='favicon.png')
- link(rel='stylesheet', type='text/css', href='vendors/ionicons/css/ionicons.css')
style
include ../public/error.css
body
0 commit comments