@hirohsu/user-web-feedback 2.8.21 → 2.8.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/static/modules/conversation-panel.js +312 -243
- package/dist/static/modules/feedback-handler.js +14 -0
- package/dist/static/style.css +360 -169
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -93642,7 +93642,7 @@ var WebServer = class {
|
|
|
93642
93642
|
*/
|
|
93643
93643
|
setupRoutes() {
|
|
93644
93644
|
const staticPath = this.getStaticAssetsPath();
|
|
93645
|
-
this.app.use(import_express.default.static(staticPath));
|
|
93645
|
+
this.app.use(import_express.default.static(staticPath, { etag: false, lastModified: true, maxAge: 0 }));
|
|
93646
93646
|
this.app.get("/dashboard", (req, res) => {
|
|
93647
93647
|
res.sendFile("dashboard.html", { root: staticPath });
|
|
93648
93648
|
});
|
package/dist/index.cjs
CHANGED
|
@@ -90654,7 +90654,7 @@ var WebServer = class {
|
|
|
90654
90654
|
*/
|
|
90655
90655
|
setupRoutes() {
|
|
90656
90656
|
const staticPath = this.getStaticAssetsPath();
|
|
90657
|
-
this.app.use(import_express.default.static(staticPath));
|
|
90657
|
+
this.app.use(import_express.default.static(staticPath, { etag: false, lastModified: true, maxAge: 0 }));
|
|
90658
90658
|
this.app.get("/dashboard", (req, res) => {
|
|
90659
90659
|
res.sendFile("dashboard.html", { root: staticPath });
|
|
90660
90660
|
});
|