Skip to content

Commit

Permalink
⚒️ Fix next.config.
Browse files Browse the repository at this point in the history
  • Loading branch information
pheralb committed Aug 8, 2022
1 parent f5126fd commit b13cf32
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const withPWA = require("next-pwa");

module.exports = withPWA({
const nextConfig = withPWA({
reactStrictMode: true,
pwa: {
dest: "public",
Expand All @@ -10,3 +10,5 @@ module.exports = withPWA({
disable: process.env.NODE_ENV === "development",
},
});

module.exports = nextConfig;

0 comments on commit b13cf32

Please sign in to comment.