project-structure
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const withPWA = require('next-pwa')
|
||||
const runtimeCaching = require('next-pwa/cache')
|
||||
const withPWA = require('next-pwa');
|
||||
const runtimeCaching = require('next-pwa/cache');
|
||||
const withPreact = require('next-plugin-preact');
|
||||
|
||||
module.exports = withPWA({
|
||||
pwa: {
|
||||
dest: 'public',
|
||||
runtimeCaching,
|
||||
},
|
||||
})
|
||||
module.exports = withPreact(
|
||||
withPWA({
|
||||
pwa: {
|
||||
dest: 'public',
|
||||
runtimeCaching,
|
||||
},
|
||||
})
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user