|
32 | 32 | app_name="test", |
33 | 33 | ), |
34 | 34 | False, |
35 | | - 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60};', |
| 35 | + 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};', |
36 | 36 | ), |
37 | 37 | ( |
38 | 38 | Config( |
39 | 39 | app_name="test", |
40 | 40 | static_page_generation_timeout=30, |
41 | 41 | ), |
42 | 42 | False, |
43 | | - 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 30};', |
| 43 | + 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 30, devIndicators: false};', |
44 | 44 | ), |
45 | 45 | ( |
46 | 46 | Config( |
47 | 47 | app_name="test", |
48 | 48 | next_compression=False, |
49 | 49 | ), |
50 | 50 | False, |
51 | | - 'module.exports = {basePath: "", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60};', |
| 51 | + 'module.exports = {basePath: "", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};', |
52 | 52 | ), |
53 | 53 | ( |
54 | 54 | Config( |
55 | 55 | app_name="test", |
56 | 56 | frontend_path="/test", |
57 | 57 | ), |
58 | 58 | False, |
59 | | - 'module.exports = {basePath: "/test", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60};', |
| 59 | + 'module.exports = {basePath: "/test", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};', |
60 | 60 | ), |
61 | 61 | ( |
62 | 62 | Config( |
|
65 | 65 | next_compression=False, |
66 | 66 | ), |
67 | 67 | False, |
68 | | - 'module.exports = {basePath: "/test", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60};', |
| 68 | + 'module.exports = {basePath: "/test", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};', |
69 | 69 | ), |
70 | 70 | ( |
71 | 71 | Config( |
72 | 72 | app_name="test", |
73 | 73 | ), |
74 | 74 | True, |
75 | | - 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, output: "export", distDir: "_static"};', |
| 75 | + 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false, output: "export", distDir: "_static"};', |
| 76 | + ), |
| 77 | + ( |
| 78 | + Config( |
| 79 | + app_name="test", |
| 80 | + next_dev_indicators=True, |
| 81 | + ), |
| 82 | + True, |
| 83 | + 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: true, output: "export", distDir: "_static"};', |
76 | 84 | ), |
77 | 85 | ], |
78 | 86 | ) |
|
0 commit comments