Skip to content

Commit 0b4b3c0

Browse files
committed
Clean up
1 parent aba0a20 commit 0b4b3c0

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/daemon/routers/index.js

-5
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ const log = require('../log')
55
module.exports = function(group) {
66
const router = express.Router()
77

8-
function index(req, res) {
9-
res.render('index')
10-
}
11-
128
function pac(req, res) {
139
log('Serve proxy.pac')
1410
if (conf.proxy) {
@@ -19,7 +15,6 @@ module.exports = function(group) {
1915
}
2016

2117
router
22-
.get('/', index)
2318
.get('/proxy.pac', pac)
2419
.get(
2520
'/:id',

src/daemon/views/_error.pug

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ head
44
meta(charset='utf-8')
55
meta(name='viewport', content='width=device-width, initial-scale=1')
66
link(rel='icon', type='image/png', href='favicon.png')
7-
link(rel='stylesheet', type='text/css', href='vendors/ionicons/css/ionicons.css')
87
style
98
include ../public/error.css
109
body

0 commit comments

Comments
 (0)