|
@@ -32,7 +32,7 @@ runner = CliRunner()
|
|
app_name="test",
|
|
app_name="test",
|
|
),
|
|
),
|
|
False,
|
|
False,
|
|
- 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};',
|
|
),
|
|
),
|
|
(
|
|
(
|
|
Config(
|
|
Config(
|
|
@@ -40,7 +40,7 @@ runner = CliRunner()
|
|
static_page_generation_timeout=30,
|
|
static_page_generation_timeout=30,
|
|
),
|
|
),
|
|
False,
|
|
False,
|
|
- 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 30};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 30, devIndicators: false};',
|
|
),
|
|
),
|
|
(
|
|
(
|
|
Config(
|
|
Config(
|
|
@@ -48,7 +48,7 @@ runner = CliRunner()
|
|
next_compression=False,
|
|
next_compression=False,
|
|
),
|
|
),
|
|
False,
|
|
False,
|
|
- 'module.exports = {basePath: "", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};',
|
|
),
|
|
),
|
|
(
|
|
(
|
|
Config(
|
|
Config(
|
|
@@ -56,7 +56,7 @@ runner = CliRunner()
|
|
frontend_path="/test",
|
|
frontend_path="/test",
|
|
),
|
|
),
|
|
False,
|
|
False,
|
|
- 'module.exports = {basePath: "/test", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "/test", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};',
|
|
),
|
|
),
|
|
(
|
|
(
|
|
Config(
|
|
Config(
|
|
@@ -65,14 +65,22 @@ runner = CliRunner()
|
|
next_compression=False,
|
|
next_compression=False,
|
|
),
|
|
),
|
|
False,
|
|
False,
|
|
- 'module.exports = {basePath: "/test", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "/test", compress: false, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false};',
|
|
),
|
|
),
|
|
(
|
|
(
|
|
Config(
|
|
Config(
|
|
app_name="test",
|
|
app_name="test",
|
|
),
|
|
),
|
|
True,
|
|
True,
|
|
- 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, output: "export", distDir: "_static"};',
|
|
|
|
|
|
+ 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: false, output: "export", distDir: "_static"};',
|
|
|
|
+ ),
|
|
|
|
+ (
|
|
|
|
+ Config(
|
|
|
|
+ app_name="test",
|
|
|
|
+ next_dev_indicators=True,
|
|
|
|
+ ),
|
|
|
|
+ True,
|
|
|
|
+ 'module.exports = {basePath: "", compress: true, trailingSlash: true, staticPageGenerationTimeout: 60, devIndicators: true, output: "export", distDir: "_static"};',
|
|
),
|
|
),
|
|
],
|
|
],
|
|
)
|
|
)
|