From a08ee01ecc1a12662545fc06a94d367785d8441c Mon Sep 17 00:00:00 2001 From: Andreani Jean Date: Tue, 9 May 2023 16:48:26 +0200 Subject: [PATCH 01/12] test disable error --- vite.config.ts | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/vite.config.ts b/vite.config.ts index e8241eb..fc97637 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -2,16 +2,15 @@ import { fileURLToPath, URL } from 'node:url' import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import eslintPlugin from 'vite-plugin-eslint' +import dns from 'dns' + +dns.setDefaultResultOrder('verbatim') // https://vitejs.dev/config/ export default defineConfig({ server: { host: true, - port: 5173, - hmr: { - port: 9000, - overlay: false - } + port: 5173 }, base: '/', plugins: [vue(), eslintPlugin()], From 72af694d011a87baf5290391f4255b4dc96b61d8 Mon Sep 17 00:00:00 2001 From: Andreani Jean Date: Tue, 9 May 2023 17:59:54 +0200 Subject: [PATCH 02/12] test fix --- src/App.vue | 2 ++ src/views/HomeView.vue | 1 - src/views/MyAccountView.vue | 2 -- src/views/UploadView.vue | 2 -- vite.config.ts | 6 ++---- 5 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/App.vue b/src/App.vue index 3df2584..3fcf2a1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,4 +1,5 @@