File tree 3 files changed +7
-6
lines changed
goldens/public-api/angular/build
packages/angular/build/src/builders/application
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ export type ApplicationBuilderOptions = {
57
57
progress? : boolean ;
58
58
scripts? : ScriptElement [];
59
59
security? : Security ;
60
- server? : string ;
61
- serviceWorker? : ServiceWorker_2 ;
60
+ server? : Serv ;
61
+ serviceWorker? : Serv ;
62
62
sourceMap? : SourceMapUnion ;
63
63
ssr? : SsrUnion ;
64
64
statsJson? : boolean ;
Original file line number Diff line number Diff line change @@ -259,10 +259,12 @@ export async function normalizeOptions(
259
259
: await getTailwindConfig ( searchDirectories , workspaceRoot , context ) ;
260
260
261
261
let serverEntryPoint : string | undefined ;
262
- if ( options . server ) {
262
+ if ( typeof options . server === 'string' ) {
263
+ if ( options . server === '' ) {
264
+ throw new Error ( 'The "server" option cannot be an empty string.' ) ;
265
+ }
266
+
263
267
serverEntryPoint = path . join ( workspaceRoot , options . server ) ;
264
- } else if ( options . server === '' ) {
265
- throw new Error ( 'The "server" option cannot be an empty string.' ) ;
266
268
}
267
269
268
270
let prerenderOptions ;
Original file line number Diff line number Diff line change 17
17
"description" : " The full path for the browser entry point to the application, relative to the current workspace."
18
18
},
19
19
"server" : {
20
- "type" : " string" ,
21
20
"description" : " The full path for the server entry point to the application, relative to the current workspace." ,
22
21
"oneOf" : [
23
22
{
You can’t perform that action at this time.
0 commit comments