We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a35a223 commit 08a30e1Copy full SHA for 08a30e1
.github/workflows/deploy.yml
@@ -11,7 +11,7 @@ jobs:
11
12
strategy:
13
matrix:
14
- node-version: [14.x]
+ node-version: [20.x]
15
16
steps:
17
- uses: actions/cache@v1.1.2
next.config.js
@@ -2,17 +2,15 @@
2
3
const withPWA = require('next-pwa');
4
5
-module.exports = withPWA({
6
- output: 'export',
+module.exports = {
+ output: 'public',
7
reactStrictMode: true,
8
compiler: {
9
styledComponents: true,
10
},
- pwa: {
- dest: 'public',
- disable: process.env.NODE_ENV === 'development',
- register: true,
- skipWaiting: true,
- },
basePath: '/react-timestamper',
+};
+
+module.exports = withPWA({
+ dest: 'public',
18
});
0 commit comments