Newer
Older
mobile.raikyakun.app / node / next.config.js
nutrition on 24 Jul 2024 312 bytes first commit
/** @type {import('next').NextConfig} */
const withPWA = require("@imbios/next-pwa")({
	dest: 'public',
	swSrc: '/src/worker/index.js'
})
const nextConfig = {
	reactStrictMode: true,
    swcMinify: true,
    distDir: 'build',
    output: 'standalone',
    compress: true,
}

module.exports = withPWA(nextConfig)