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,