summaryrefslogtreecommitdiff
path: root/web/mime.lua
diff options
context:
space:
mode:
Diffstat (limited to 'web/mime.lua')
-rw-r--r--web/mime.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/web/mime.lua b/web/mime.lua
new file mode 100644
index 0000000..5aa49c5
--- /dev/null
+++ b/web/mime.lua
@@ -0,0 +1,9 @@
+local m = {}
+
+m.exts = {
+ js = 'application/javascript',
+ html = 'text/html',
+ css = 'text/css',
+}
+
+return m