create-gardener 2.1.5 → 2.1.7

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.
@@ -18,10 +18,11 @@ const staticFiles = path.resolve(__dirname, '..', 'frontend')
18
18
  app.set('views', path.join(staticFiles, 'views'));
19
19
  app.set("view engine", "ejs");
20
20
  app.use(express.static(staticFiles,
21
- {
22
- maxAge: '1y', // 1 year
23
- immutable: true
24
- }
21
+ // Uncomment this for caching in production
22
+ // {
23
+ // maxAge: '1y', // 1 year
24
+ // immutable: true
25
+ // }
25
26
  ));
26
27
 
27
28
  app.use(express.json());