mirror of
https://github.com/jakobkordez/s5_practice.git
synced 2025-05-16 00:30:29 +00:00
14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
const withPwa = require('next-pwa')({
|
|
dest: 'public',
|
|
sw: 'service-worker.js',
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
}
|
|
|
|
module.exports = withPwa(nextConfig);
|