This commit is contained in:
Kasper Juul Hermansen 2022-08-29 06:49:04 +02:00
parent 1eb256f163
commit 9f8e16c036
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
7 changed files with 430 additions and 1260 deletions

View File

@ -1,5 +1,4 @@
/// <reference types="next" /> /// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" /> /// <reference types="next/image-types/global" />
// NOTE: This file should not be edited // NOTE: This file should not be edited

View File

@ -1,8 +1,14 @@
const withPWA = require("next-pwa");
const runtimeCaching = require("next-pwa/cache"); const runtimeCaching = require("next-pwa/cache");
const { PHASE_DEVELOPMENT_SERVER } = require("next/constants"); const { PHASE_DEVELOPMENT_SERVER } = require("next/constants");
const withPWA = require("next-pwa")({
dest: "public",
register: true,
skipWaiting: true,
runtimeCaching,
})
module.exports = (phase, { defaultConfig }) => { module.exports = (phase, { defaultConfig }) => {
if (phase === PHASE_DEVELOPMENT_SERVER) { if (phase === PHASE_DEVELOPMENT_SERVER) {
return { return {
@ -12,11 +18,6 @@ module.exports = (phase, { defaultConfig }) => {
return withPWA({ return withPWA({
reactStrictMode: true, reactStrictMode: true,
pwa: { output: 'standalone',
dest: "public",
register: true,
skipWaiting: true,
runtimeCaching,
},
}); });
}; };

View File

@ -12,8 +12,8 @@
"@reduxjs/toolkit": "^1.6.2", "@reduxjs/toolkit": "^1.6.2",
"@tippyjs/react": "^4.2.6", "@tippyjs/react": "^4.2.6",
"axios": "^0.24.0", "axios": "^0.24.0",
"next": "12.0.3", "next": "^12.2.5",
"next-pwa": "^5.4.0", "next-pwa": "^5.6.0",
"react": "17.0.2", "react": "17.0.2",
"react-dom": "17.0.2", "react-dom": "17.0.2",
"react-redux": "^7.2.6", "react-redux": "^7.2.6",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff