dh_demo

DreamHanks demo project
git clone git://git.lair.cx/dh_demo
Log | Files | Refs | README

next.config.js (261B)


      1 /** @type {import('next').NextConfig} */
      2 const nextConfig = {
      3   reactStrictMode: true,
      4   experimental: {
      5     swcPlugins: [
      6       [
      7         'next-superjson-plugin',
      8         {
      9           excluded: [],
     10         },
     11       ],
     12     ],
     13   },
     14 }
     15 
     16 module.exports = nextConfig