this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update next configs

BK610 d41fba5a 66b67327

+10 -40
+10 -3
next.config.js
··· 1 1 "use strict"; 2 2 // @ts-check 3 - Object.defineProperty(exports, "__esModule", { value: true }); 4 - var nextConfig = {}; 5 - exports.default = nextConfig; 3 + /** @type {import('next').NextConfig} */ 4 + const nextConfig = { 5 + /* config options here */ 6 + }; 7 + 8 + module.exports = nextConfig; 9 + 10 + // const withPWA = require('next-pwa'); 11 + // const runtimeCaching = require('next-pwa/cache'); 12 + 6 13 // module.exports = 7 14 // // withPWA( 8 15 // {
-37
next.config.ts
··· 1 - // @ts-check 2 - 3 - // /** @type {import('next').NextConfig} */ 4 - // const nextConfig = { 5 - // /* config options here */ 6 - // } 7 - 8 - // module.exports = nextConfig 9 - 10 - // const withPWA = require('next-pwa'); 11 - // const runtimeCaching = require('next-pwa/cache'); 12 - 13 - import type { NextConfig } from "next"; 14 - 15 - const nextConfig: NextConfig = {}; 16 - 17 - export default nextConfig; 18 - 19 - // module.exports = 20 - // // withPWA( 21 - // { 22 - // webpack: (cfg) => { 23 - // cfg.module.rules.push({ 24 - // test: /\.md$/, 25 - // loader: "frontmatter-markdown-loader", 26 - // options: { mode: ["react-component"] }, 27 - // }); 28 - // return cfg; 29 - // }, 30 - // //, 31 - // // pwa: { 32 - // // dest: 'public', 33 - // // disable: process.env.NODE_ENV === 'development', 34 - // // // runtimeCaching 35 - // // } 36 - // }; 37 - //)