From 7374a35b413f5183d7f1a990cfc28bb5ce7c3024 Mon Sep 17 00:00:00 2001 From: Andrew Bastin Date: Tue, 19 Dec 2023 12:40:07 +0530 Subject: [PATCH] fix: broken ui due to accidentally moved postcss config --- packages/hoppscotch-common/src/components.d.ts | 11 +++++------ packages/hoppscotch-selfhost-web/postcss.config.cjs | 8 ++++++++ 2 files changed, 13 insertions(+), 6 deletions(-) create mode 100644 packages/hoppscotch-selfhost-web/postcss.config.cjs diff --git a/packages/hoppscotch-common/src/components.d.ts b/packages/hoppscotch-common/src/components.d.ts index 2b51afd18..c676ad999 100644 --- a/packages/hoppscotch-common/src/components.d.ts +++ b/packages/hoppscotch-common/src/components.d.ts @@ -1,11 +1,11 @@ -// generated by unplugin-vue-components -// We suggest you to commit this file into source control +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// Generated by unplugin-vue-components // Read more: https://github.com/vuejs/core/pull/3399 -import '@vue/runtime-core' - export {} -declare module '@vue/runtime-core' { +declare module 'vue' { export interface GlobalComponents { AppActionHandler: typeof import('./components/app/ActionHandler.vue')['default'] AppBanner: typeof import('./components/app/Banner.vue')['default'] @@ -210,5 +210,4 @@ declare module '@vue/runtime-core' { WorkspaceCurrent: typeof import('./components/workspace/Current.vue')['default'] WorkspaceSelector: typeof import('./components/workspace/Selector.vue')['default'] } - } diff --git a/packages/hoppscotch-selfhost-web/postcss.config.cjs b/packages/hoppscotch-selfhost-web/postcss.config.cjs new file mode 100644 index 000000000..177031b7a --- /dev/null +++ b/packages/hoppscotch-selfhost-web/postcss.config.cjs @@ -0,0 +1,8 @@ +const config = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} + +module.exports = config