Files
DocsGPT/extensions/react-widget/vite.config.ts
2024-02-29 04:11:47 +05:30

46 lines
1.2 KiB
TypeScript

import path from "path"
import react from "@vitejs/plugin-react"
import { defineConfig } from "vite"
import dts from "vite-plugin-dts";
import css from "rollup-plugin-import-css";
export default defineConfig({
build: {
//Specifies that the output of the build will be a library.
lib: {
//Defines the entry point for the library build. It resolves
//to src/index.ts,indicating that the library starts from this file.
entry: path.resolve(__dirname, "src/index.ts"),
name: "docsgpt-widget",
//A function that generates the output file
//name for different formats during the build
fileName: (format) => `index.${format}.js`,
},
cssCodeSplit: false,
rollupOptions: {
external: ["react", "react-dom"],
output: {
globals: {
react: "React",
"react-dom": "ReactDOM",
},
},
},
//Generates sourcemaps for the built files,
//aiding in debugging.
sourcemap: 'inline',
//Clears the output directory before building.
emptyOutDir: true,
},
plugins: [react(), dts(),css({
inject:true,
include:['./src/index.css']
})],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
})