Removing unused config and language files

This commit is contained in:
David Jay
2016-11-01 14:44:17 -07:00
parent a5e263e750
commit 3aa58f5663
2 changed files with 0 additions and 18 deletions
-12
View File
@@ -23,22 +23,10 @@ app.use(require('webpack-dev-middleware')(compiler, {
app.use(require('webpack-hot-middleware')(compiler, {log: () => {}}))
app.get('/talk.config.json', function (req, res) {
res.sendFile(path.join(__dirname, 'talk.config.json'))
})
app.get('/default.css', function (req, res) {
res.sendFile(path.join(__dirname, '/style/default.css'))
})
app.get('/translations/en.json', function (req, res) {
res.sendFile(path.join(__dirname, '..', 'coral-framework', 'i18n', 'translations', 'en.json'))
})
app.get('/translations/es.json', function (req, res) {
res.sendFile(path.join(__dirname, '..', 'coral-framework', 'i18n', 'translations', 'es.json'))
})
app.get('*', function (req, res) {
res.sendFile(path.join(__dirname, 'index.html'))
})
@@ -1,6 +0,0 @@
{
"coralHost": "http://localhost:16180",
"notifLength": 4500,
"view": "comment_stream",
"query": "all"
}