We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 634ca1c commit d2045b9Copy full SHA for d2045b9
packages/@vue/cli-service/__tests__/serve.spec.js
@@ -181,7 +181,7 @@ test('dart sass', async () => {
181
await project.run('vue-cli-service build')
182
})
183
184
-test.only('use a single websocket connection for HMR', async () => {
+test('use a single websocket connection for HMR', async () => {
185
const project = await create('e2e-serve', defaultPreset)
186
187
await serve(
packages/@vue/cli-service/lib/commands/serve.js
@@ -172,6 +172,7 @@ module.exports = (api, options) => {
172
contentBase: api.resolve('public'),
173
watchContentBase: !isProduction,
174
hot: !isProduction,
175
+ injectClient: false,
176
compress: isProduction,
177
publicPath: options.publicPath,
178
overlay: isProduction // TODO disable this
0 commit comments