this repo has no description www.baileykane.co/
at main 39 lines 831 B view raw
1"use strict"; 2// @ts-check 3/** @type {import('next').NextConfig} */ 4const nextConfig = { 5 /* config options here */ 6 images: { 7 remotePatterns: [ 8 { 9 protocol: "https", 10 hostname: "covers.openlibrary.org", 11 }, 12 ], 13 }, 14}; 15 16module.exports = nextConfig; 17 18// const withPWA = require('next-pwa'); 19// const runtimeCaching = require('next-pwa/cache'); 20 21// module.exports = 22// // withPWA( 23// { 24// webpack: (cfg) => { 25// cfg.module.rules.push({ 26// test: /\.md$/, 27// loader: "frontmatter-markdown-loader", 28// options: { mode: ["react-component"] }, 29// }); 30// return cfg; 31// }, 32// //, 33// // pwa: { 34// // dest: 'public', 35// // disable: process.env.NODE_ENV === 'development', 36// // // runtimeCaching 37// // } 38// }; 39//)