@@ -489,7 +489,7 @@ export async function readConfig(
489
489
if ( appConfig . future ) {
490
490
if ( "unstable_cssModules" in appConfig . future ) {
491
491
logger . warn (
492
- ' The " future.unstable_cssModules" config option has been removed' ,
492
+ " The ` future.unstable_cssModules` config option has been removed" ,
493
493
{
494
494
details : [
495
495
"CSS Modules are now enabled automatically." ,
@@ -502,7 +502,7 @@ export async function readConfig(
502
502
503
503
if ( "unstable_cssSideEffectImports" in appConfig . future ) {
504
504
logger . warn (
505
- ' The " future.unstable_cssSideEffectImports" config option has been removed' ,
505
+ " The ` future.unstable_cssSideEffectImports` config option has been removed" ,
506
506
{
507
507
details : [
508
508
"CSS side-effect imports are now enabled automatically." ,
@@ -515,7 +515,7 @@ export async function readConfig(
515
515
516
516
if ( "unstable_vanillaExtract" in appConfig . future ) {
517
517
logger . warn (
518
- ' The " future.unstable_vanillaExtract" config option has been removed.' ,
518
+ " The ` future.unstable_vanillaExtract` config option has been removed." ,
519
519
{
520
520
details : [
521
521
"Vanilla Extract is now enabled automatically." ,
@@ -528,7 +528,7 @@ export async function readConfig(
528
528
529
529
if ( appConfig . future . unstable_postcss !== undefined ) {
530
530
logger . warn (
531
- ' The " future.unstable_postcss" config option has been deprecated.' ,
531
+ " The ` future.unstable_postcss` config option has been deprecated." ,
532
532
{
533
533
details : [
534
534
"PostCSS support is now stable." ,
@@ -541,7 +541,7 @@ export async function readConfig(
541
541
542
542
if ( appConfig . future . unstable_tailwind !== undefined ) {
543
543
logger . warn (
544
- ' The " future.unstable_tailwind" config option has been deprecated.' ,
544
+ " The ` future.unstable_tailwind` config option has been deprecated." ,
545
545
{
546
546
details : [
547
547
"Tailwind support is now stable." ,
@@ -551,6 +551,17 @@ export async function readConfig(
551
551
}
552
552
) ;
553
553
}
554
+
555
+ if ( "unstable_dev" in appConfig . future ) {
556
+ logger . warn ( "The `future.unstable_dev` config option has been removed" , {
557
+ details : [
558
+ "The v2 dev server is now stable." ,
559
+ "Use the `future.v2_dev` config option instead." ,
560
+ "-> https://remix.run/docs/en/main/pages/v2#dev-server" ,
561
+ ] ,
562
+ key : "unstable_dev" ,
563
+ } ) ;
564
+ }
554
565
}
555
566
556
567
let mdx = appConfig . mdx ;
0 commit comments