mirror of
https://github.com/hamster1963/nezha-dash.git
synced 2025-04-24 21:10:45 +08:00
20 lines
521 B
JavaScript
20 lines
521 B
JavaScript
import createNextIntlPlugin from 'next-intl/plugin';
|
|
const withNextIntl = createNextIntlPlugin();
|
|
import withPWAInit from "@ducanh2912/next-pwa";
|
|
const withPWA = withPWAInit({
|
|
dest: "public",
|
|
cacheOnFrontEndNav: true,
|
|
aggressiveFrontEndNavCaching: true,
|
|
reloadOnOnline: true,
|
|
disable: false,
|
|
workboxOptions: {
|
|
disableDevLogs: true
|
|
}
|
|
});
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// output: "standalone",
|
|
reactStrictMode: true
|
|
};
|
|
export default withPWA(withNextIntl(nextConfig)); |