@djangocfg/nextjs 2.1.32 → 2.1.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs
CHANGED
|
@@ -14,7 +14,7 @@ var require_package = __commonJS({
|
|
|
14
14
|
"package.json"(exports, module) {
|
|
15
15
|
module.exports = {
|
|
16
16
|
name: "@djangocfg/nextjs",
|
|
17
|
-
version: "2.1.
|
|
17
|
+
version: "2.1.33",
|
|
18
18
|
description: "Next.js server utilities: sitemap, health, OG images, contact forms, navigation, config",
|
|
19
19
|
keywords: [
|
|
20
20
|
"nextjs",
|
|
@@ -113,7 +113,7 @@ var require_package = __commonJS({
|
|
|
113
113
|
"ai-docs": "tsx src/ai/cli.ts"
|
|
114
114
|
},
|
|
115
115
|
peerDependencies: {
|
|
116
|
-
next: "^
|
|
116
|
+
next: "^16.0.10"
|
|
117
117
|
},
|
|
118
118
|
dependencies: {
|
|
119
119
|
"@ducanh2912/next-pwa": "^10.2.9",
|
|
@@ -2433,6 +2433,9 @@ function createBaseNextConfig(options = {}) {
|
|
|
2433
2433
|
const baseConfig = {
|
|
2434
2434
|
reactStrictMode: true,
|
|
2435
2435
|
trailingSlash: true,
|
|
2436
|
+
// Turbopack config (empty to silence Next.js 16 warning about webpack config)
|
|
2437
|
+
// Webpack config is still used for dev startup plugin and compression
|
|
2438
|
+
turbopack: {},
|
|
2436
2439
|
// Static export configuration
|
|
2437
2440
|
...isStaticBuild && {
|
|
2438
2441
|
output: "export",
|