8 lines
109 B
JavaScript
8 lines
109 B
JavaScript
|
|
const withPWA = require("next-pwa");
|
||
|
|
|
||
|
|
module.exports = withPWA({
|
||
|
|
pwa: {
|
||
|
|
dest: "public"
|
||
|
|
}
|
||
|
|
});
|