@@ -2823,7 +2823,7 @@ export async function release(task) {
2823
2823
export async function next_bundle_app_turbo ( task , opts ) {
2824
2824
await task . source ( 'dist' ) . webpack ( {
2825
2825
watch : opts . dev ,
2826
- config : require ( './webpack. config' ) ( {
2826
+ config : require ( './next-runtime.webpack- config' ) ( {
2827
2827
turbo : true ,
2828
2828
bundleType : 'app' ,
2829
2829
} ) ,
@@ -2834,7 +2834,7 @@ export async function next_bundle_app_turbo(task, opts) {
2834
2834
export async function next_bundle_app_prod ( task , opts ) {
2835
2835
await task . source ( 'dist' ) . webpack ( {
2836
2836
watch : opts . dev ,
2837
- config : require ( './webpack. config' ) ( {
2837
+ config : require ( './next-runtime.webpack- config' ) ( {
2838
2838
dev : false ,
2839
2839
bundleType : 'app' ,
2840
2840
} ) ,
@@ -2845,7 +2845,7 @@ export async function next_bundle_app_prod(task, opts) {
2845
2845
export async function next_bundle_app_dev ( task , opts ) {
2846
2846
await task . source ( 'dist' ) . webpack ( {
2847
2847
watch : opts . dev ,
2848
- config : require ( './webpack. config' ) ( {
2848
+ config : require ( './next-runtime.webpack- config' ) ( {
2849
2849
dev : true ,
2850
2850
bundleType : 'app' ,
2851
2851
} ) ,
@@ -2856,7 +2856,7 @@ export async function next_bundle_app_dev(task, opts) {
2856
2856
export async function next_bundle_app_turbo_experimental ( task , opts ) {
2857
2857
await task . source ( 'dist' ) . webpack ( {
2858
2858
watch : opts . dev ,
2859
- config : require ( './webpack. config' ) ( {
2859
+ config : require ( './next-runtime.webpack- config' ) ( {
2860
2860
turbo : true ,
2861
2861
bundleType : 'app' ,
2862
2862
experimental : true ,
@@ -2868,7 +2868,7 @@ export async function next_bundle_app_turbo_experimental(task, opts) {
2868
2868
export async function next_bundle_app_prod_experimental ( task , opts ) {
2869
2869
await task . source ( 'dist' ) . webpack ( {
2870
2870
watch : opts . dev ,
2871
- config : require ( './webpack. config' ) ( {
2871
+ config : require ( './next-runtime.webpack- config' ) ( {
2872
2872
dev : false ,
2873
2873
bundleType : 'app' ,
2874
2874
experimental : true ,
@@ -2880,7 +2880,7 @@ export async function next_bundle_app_prod_experimental(task, opts) {
2880
2880
export async function next_bundle_app_dev_experimental ( task , opts ) {
2881
2881
await task . source ( 'dist' ) . webpack ( {
2882
2882
watch : opts . dev ,
2883
- config : require ( './webpack. config' ) ( {
2883
+ config : require ( './next-runtime.webpack- config' ) ( {
2884
2884
dev : true ,
2885
2885
bundleType : 'app' ,
2886
2886
experimental : true ,
@@ -2892,7 +2892,7 @@ export async function next_bundle_app_dev_experimental(task, opts) {
2892
2892
export async function next_bundle_pages_prod ( task , opts ) {
2893
2893
await task . source ( 'dist' ) . webpack ( {
2894
2894
watch : opts . dev ,
2895
- config : require ( './webpack. config' ) ( {
2895
+ config : require ( './next-runtime.webpack- config' ) ( {
2896
2896
dev : false ,
2897
2897
bundleType : 'pages' ,
2898
2898
} ) ,
@@ -2903,7 +2903,7 @@ export async function next_bundle_pages_prod(task, opts) {
2903
2903
export async function next_bundle_pages_dev ( task , opts ) {
2904
2904
await task . source ( 'dist' ) . webpack ( {
2905
2905
watch : opts . dev ,
2906
- config : require ( './webpack. config' ) ( {
2906
+ config : require ( './next-runtime.webpack- config' ) ( {
2907
2907
dev : true ,
2908
2908
bundleType : 'pages' ,
2909
2909
} ) ,
@@ -2914,7 +2914,7 @@ export async function next_bundle_pages_dev(task, opts) {
2914
2914
export async function next_bundle_pages_turbo ( task , opts ) {
2915
2915
await task . source ( 'dist' ) . webpack ( {
2916
2916
watch : opts . dev ,
2917
- config : require ( './webpack. config' ) ( {
2917
+ config : require ( './next-runtime.webpack- config' ) ( {
2918
2918
turbo : true ,
2919
2919
bundleType : 'pages' ,
2920
2920
} ) ,
@@ -2925,7 +2925,7 @@ export async function next_bundle_pages_turbo(task, opts) {
2925
2925
export async function next_bundle_server ( task , opts ) {
2926
2926
await task . source ( 'dist' ) . webpack ( {
2927
2927
watch : opts . dev ,
2928
- config : require ( './webpack. config' ) ( {
2928
+ config : require ( './next-runtime.webpack- config' ) ( {
2929
2929
dev : false ,
2930
2930
bundleType : 'server' ,
2931
2931
} ) ,
0 commit comments