Skip to content

Commit 8a4d391

Browse files
committed
chore(pwa): add pwa for next
1 parent 5e4f8a3 commit 8a4d391

File tree

5 files changed

+2024
-51
lines changed

5 files changed

+2024
-51
lines changed

next.config.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
const path = require('path');
22
const WorkerPlugin = require("worker-plugin");
3+
const withPWA = require('next-pwa');
4+
const runtimeCaching = require('next-pwa/cache')
35
const withBundleAnalyzer = require('@next/bundle-analyzer')({
46
enabled: process.env.ANALYZE === 'true',
5-
})
7+
});
68

7-
module.exports = withBundleAnalyzer({
9+
const app = {
810
sassOptions: {
911
includePaths: [path.join(__dirname, 'styles')],
1012
},
@@ -18,4 +20,14 @@ module.exports = withBundleAnalyzer({
1820
}
1921
return config;
2022
},
21-
});
23+
pwa: {
24+
dest: 'public',
25+
runtimeCaching,
26+
},
27+
};
28+
29+
module.exports = withBundleAnalyzer(
30+
withPWA(
31+
app
32+
)
33+
)

0 commit comments

Comments
 (0)