We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 854b716 commit a9670ddCopy full SHA for a9670dd
packages/build-tools/cli.js
@@ -113,13 +113,14 @@ if (program.configFile) {
113
typeof program.prod === 'undefined' ? config.prod : program.prod;
114
115
// automatically set enableSSR to true in prod mode and false in dev mode, unless manually set.
116
- config.enableSSR = config.enableSSR
117
- ? config.enableSSR
118
- : typeof options.ssr === 'undefined'
119
- ? config.prod
120
- ? true
121
- : false
122
- : options.ssr;
+ config.enableSSR = false;
+ //config.enableSSR
+ //? config.enableSSR
+ //: typeof options.ssr === 'undefined'
+ //? config.prod
+ // ? true
+ // : false
123
+ //: options.ssr;
124
125
config.i18n =
126
typeof options.i18n === 'undefined'
0 commit comments