Files
hoppscotch/packages/hoppscotch-ui/vite.config.ts
Anwarul Islam a215860782 feat: replacing windicss by tailwindcss in hoppscotch-ui (#3076)
Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
Co-authored-by: Joel Jacob Stephen <70131076+JoelJacobStephen@users.noreply.github.com>
Co-authored-by: nivedin <nivedinp@gmail.com>
2023-11-01 20:55:08 +05:30

57 lines
1.2 KiB
TypeScript

import vue from "@vitejs/plugin-vue"
import Icons from "unplugin-icons/vite"
import { defineConfig } from "vite"
import dts from "vite-plugin-dts"
import Unfonts from "unplugin-fonts/vite"
export default defineConfig({
plugins: [
vue(),
dts({
insertTypesEntry: true,
skipDiagnostics: true,
outputDir: ["dist"],
}),
Icons({
compiler: "vue3",
}),
Unfonts({
fontsource: {
families: [
{
name: "Inter Variable",
variables: ["variable-full"],
},
{
name: "Material Symbols Rounded Variable",
variables: ["variable-full"],
},
{
name: "Roboto Mono Variable",
variables: ["variable-full"],
},
],
},
}),
], // to process SFC
build: {
sourcemap: true,
minify: false,
lib: {
entry: {
index: "./src/index.ts",
"ui-preset": "./ui-preset.ts",
"postcss.config": "./postcss.config.cjs",
},
formats: ["es"],
},
rollupOptions: {
external: ["vue"],
output: {
exports: "named",
},
},
emptyOutDir: true,
},
})