diff options
| author | Carson Fleming <cflems@cflems.net> | 2023-10-19 03:17:21 -0400 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2023-10-19 03:17:21 -0400 |
| commit | c6d0cd3fca3cc9cacdb4c5a88797d00ae5560841 (patch) | |
| tree | 061a3a5bbaeb5d99086ddd3a93ba20e6a2667126 /index.js | |
| parent | 85f217f63e248ae0df44368a6a0d03620955f170 (diff) | |
| download | fle.ms-c6d0cd3fca3cc9cacdb4c5a88797d00ae5560841.tar.gz | |
Dream up a style for the frontend
Diffstat (limited to 'index.js')
| -rw-r--r-- | index.js | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -21,6 +21,9 @@ async function serve() { app.use(express.urlencoded({extended: true})); app.use(express.json()); + app.use('/css', express.static(__dirname+'/static/css')); + app.use('/js', express.static(__dirname+'/static/js')); + app.use('/img', express.static(__dirname+'/static/img')); app.use('/api', apiRoutes); app.use('/', routes); |
