This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Homework.app/next.config.js
2022-04-02 17:53:04 -03:00

11 lines
208 B
JavaScript

/** @type {import('next').NextConfig} */
const withPWA = require('next-pwa');
const runtimeCaching = require('next-pwa/cache');
module.exports = withPWA({
pwa: {
dest: 'public',
runtimeCaching,
},
});