modified: next.config.mjs modified: package-lock.json modified: package.json new file: public/manifest.json renamed: src/app/component/BusStrip.tsx -> src/app/component/Bus.tsx modified: src/app/component/Strip.tsx modified: src/app/component/StripBusOutput.tsx modified: src/app/layout.tsx modified: src/app/page.tsx
15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
import nextPWA from "next-pwa";
|
|
|
|
const withPWA = nextPWA({
|
|
dest: "public",
|
|
register: true,
|
|
skipWaiting: true,
|
|
});
|
|
|
|
const nextConfig = withPWA({
|
|
experimental: {},
|
|
});
|
|
|
|
export default nextConfig;
|