From 75702262065ce1ba2db253e479d9d520729a1f73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 24 Oct 2023 15:12:26 +0300 Subject: [PATCH] Renamed alias file --- alias.config.js => nuxt-vite.config.js | 2 ++ nuxt.config.js | 2 +- vitest.config.js | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) rename alias.config.js => nuxt-vite.config.js (98%) diff --git a/alias.config.js b/nuxt-vite.config.js similarity index 98% rename from alias.config.js rename to nuxt-vite.config.js index 1f9e93e42..2e272cc65 100644 --- a/alias.config.js +++ b/nuxt-vite.config.js @@ -42,11 +42,13 @@ const STYLE_ALIAS = { 'primevue/editor/style': path.resolve(__dirname, './components/lib/editor/style/EditorStyle.js'), 'primevue/fieldset/style': path.resolve(__dirname, './components/lib/fieldset/style/FieldsetStyle.js'), 'primevue/fileupload/style': path.resolve(__dirname, './components/lib/fileupload/style/FileUploadStyle.js'), + 'primevue/floatlabel/style': path.resolve(__dirname, './components/lib/floatlabel/style/FloatLabelStyle.js'), 'primevue/focustrap/style': path.resolve(__dirname, './components/lib/focustrap/style/FocusTrapStyle.js'), 'primevue/galleria/style': path.resolve(__dirname, './components/lib/galleria/style/GalleriaStyle.js'), 'primevue/image/style': path.resolve(__dirname, './components/lib/image/style/ImageStyle.js'), 'primevue/inlinemessage/style': path.resolve(__dirname, './components/lib/inlinemessage/style/InlineMessageStyle.js'), 'primevue/inplace/style': path.resolve(__dirname, './components/lib/inplace/style/InplaceStyle.js'), + 'primevue/inputgroup/style': path.resolve(__dirname, './components/lib/inputgroup/style/InputGroupStyle.js'), 'primevue/inputmask/style': path.resolve(__dirname, './components/lib/inputmask/style/InputMaskStyle.js'), 'primevue/inputnumber/style': path.resolve(__dirname, './components/lib/inputnumber/style/InputNumberStyle.js'), 'primevue/inputswitch/style': path.resolve(__dirname, './components/lib/inputswitch/style/InputSwitchStyle.js'), diff --git a/nuxt.config.js b/nuxt.config.js index 64b22c197..652d9b7c8 100644 --- a/nuxt.config.js +++ b/nuxt.config.js @@ -1,4 +1,4 @@ -import aliasConfig from './alias.config'; +import aliasConfig from './nuxt-vite.config.js'; const baseUrl = '/'; diff --git a/vitest.config.js b/vitest.config.js index d60a81852..6918737bb 100644 --- a/vitest.config.js +++ b/vitest.config.js @@ -2,7 +2,7 @@ import vue from '@vitejs/plugin-vue'; import path from 'path'; import { mergeConfig } from 'vite'; import { defineConfig } from 'vitest/config'; -import aliasConfig from './alias.config'; +import aliasConfig from './nuxt-vite.config.js'; export default mergeConfig( aliasConfig,