textualize/frontend/next.config.js
Joshua Shoemaker fe25bc1c2e several things
no longer using  next app dir
no selected document view
top tab navigation
2023-01-03 20:47:30 -06:00

12 lines
430 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Wails' development web server does not support gzip compression,
// turning on gzip compression will result in a blank screen when
// running `wails dev`, so we need to turn off Next.js' gzip compression.
// See <https://nextjs.org/docs/api-reference/next.config.js/compression>.
compress: false,
}
module.exports = nextConfig