1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-04-16 23:51:18 +00:00
next-ory/authentication/next.config.mjs
2024-11-24 00:06:00 +01:00

16 lines
360 B
JavaScript

import withSerwistInit from '@serwist/next';
const withSerwist = withSerwistInit({
swSrc: 'src/app/service-worker.ts',
swDest: 'public/sw.js',
});
export default withSerwist({
output: 'standalone',
experimental: {
missingSuspenseWithCSRBailout: false,
},
env: {
appVersion: process.env.npm_package_version,
},
});