@djangocfg/nextjs 2.1.31 → 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/config/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,10 +113,10 @@ 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
|
-
"@ducanh2912/next-pwa": "^
|
|
119
|
+
"@ducanh2912/next-pwa": "^10.2.9",
|
|
120
120
|
chalk: "^5.3.0",
|
|
121
121
|
conf: "^15.0.2",
|
|
122
122
|
consola: "^3.4.2",
|
|
@@ -1452,6 +1452,9 @@ function createBaseNextConfig(options = {}) {
|
|
|
1452
1452
|
const baseConfig = {
|
|
1453
1453
|
reactStrictMode: true,
|
|
1454
1454
|
trailingSlash: true,
|
|
1455
|
+
// Turbopack config (empty to silence Next.js 16 warning about webpack config)
|
|
1456
|
+
// Webpack config is still used for dev startup plugin and compression
|
|
1457
|
+
turbopack: {},
|
|
1455
1458
|
// Static export configuration
|
|
1456
1459
|
...isStaticBuild && {
|
|
1457
1460
|
output: "export",
|