Commit 9b063e0cf3edbe946b4d70c56fee7a6402b2211b
Upgrades deps
romuloalves committed on 6/24/2019, 12:28:10 PMParent: bd4bfedca4b0bd09f8505a662478749de1fe663f
Files changed
next.config.js | changed |
now.json | changed |
package-lock.json | changed |
package.json | changed |
static/manifest.json | changed |
next.config.js | ||
---|---|---|
@@ -1,1 +1,3 @@ | ||
1 | -module.exports = {}; | |
1 … | +const withOffline = require('next-offline'); | |
2 … | + | |
3 … | +module.exports = withOffline({}); |
now.json | ||
---|---|---|
@@ -17,17 +17,24 @@ | ||
17 | 17 … | "src": "/.well-known/(.*)", |
18 | 18 … | "dest": "/.well-known/$1", |
19 | 19 … | "headers": { |
20 | 20 … | "content-type": "text/plain", |
21 | - "content-disposition": "inline; filename=\"$1\"" | |
21 … | + "content-disposition": "inline; filename=\"$1\"", | |
22 … | + "Access-Control-Allow-Origin": "*" | |
22 | 23 … | } |
23 | 24 … | }, |
24 | 25 … | { |
25 | 26 … | "src": "/static/(.*)", |
26 | - "dest": "/static/$1" | |
27 … | + "dest": "/static/$1", | |
28 … | + "headers": { | |
29 … | + "Access-Control-Allow-Origin": "*" | |
30 … | + } | |
27 | 31 … | }, |
28 | 32 … | { |
29 | 33 … | "src": "/(.*)", |
30 | - "dest": "/$1" | |
34 … | + "dest": "/$1", | |
35 … | + "headers": { | |
36 … | + "Access-Control-Allow-Origin": "*" | |
37 … | + } | |
31 | 38 … | } |
32 | 39 … | ] |
33 | -} | |
40 … | +} |
package-lock.json | ||
---|---|---|
The diff is too large to show. Use a local git client to view these changes. Old file size: 221841 bytes New file size: 250736 bytes |
package.json | ||
---|---|---|
@@ -22,11 +22,12 @@ | ||
22 | 22 … | "url": "https://github.com/romuloalves/plainbudget-next/issues" |
23 | 23 … | }, |
24 | 24 … | "homepage": "https://github.com/romuloalves/plainbudget-next#readme", |
25 | 25 … | "dependencies": { |
26 | - "next": "^7.0.2", | |
26 … | + "next": "^8.1.0", | |
27 … | + "next-offline": "^4.0.2", | |
27 | 28 … | "plainbudget": "1.0.0", |
28 | - "prop-types": "15.6.2", | |
29 | - "react": "^16.6.3", | |
30 | - "react-dom": "^16.6.3" | |
29 … | + "prop-types": "^15.7.2", | |
30 … | + "react": "^16.8.6", | |
31 … | + "react-dom": "^16.8.6" | |
31 | 32 … | } |
32 | 33 … | } |
Built with git-ssb-web