diff options
| author | Ahmed Mansour <[email protected]> | 2025-12-25 03:00:22 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-12-24 20:00:22 -0600 |
| commit | a5301e2ab7b592f90cb91212af7c2af3329601a0 (patch) | |
| tree | 23d0d7f7ea672fc744e30b12a99570f6d1bf136e | |
| parent | 8eac72341f56e2def45d347edda59eb9cb3b64d6 (diff) | |
| download | opencode-a5301e2ab7b592f90cb91212af7c2af3329601a0.tar.gz opencode-a5301e2ab7b592f90cb91212af7c2af3329601a0.zip | |
fix: correct Content-Type headers for static assets on app.opencode.ai (#6113)
| -rw-r--r-- | packages/app/public/_headers | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/app/public/_headers b/packages/app/public/_headers new file mode 100644 index 000000000..f5157b1de --- /dev/null +++ b/packages/app/public/_headers @@ -0,0 +1,17 @@ +/assets/*.js + Content-Type: application/javascript + +/assets/*.mjs + Content-Type: application/javascript + +/assets/*.css + Content-Type: text/css + +/*.js + Content-Type: application/javascript + +/*.mjs + Content-Type: application/javascript + +/*.css + Content-Type: text/css |
