mirror of
https://codeberg.org/MarkusThielker/next-ory.git
synced 2025-04-09 11:48:43 +00:00
13 lines
287 B
JavaScript
13 lines
287 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',
|
|
env: {
|
|
appVersion: process.env.npm_package_version,
|
|
},
|
|
});
|