mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-03 23:15:37 +00:00
40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import path from "path"
|
|
import react from "@vitejs/plugin-react"
|
|
import { defineConfig } from "vite"
|
|
import dts from "vite-plugin-dts";
|
|
|
|
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`,
|
|
},
|
|
rollupOptions: {
|
|
external: ["react", "react-dom"],
|
|
output: {
|
|
globals: {
|
|
react: "React",
|
|
"react-dom": "ReactDOM",
|
|
},
|
|
},
|
|
},
|
|
//Generates sourcemaps for the built files,
|
|
//aiding in debugging.
|
|
sourcemap: true,
|
|
//Clears the output directory before building.
|
|
emptyOutDir: true,
|
|
},
|
|
plugins: [react(), dts()],
|
|
resolve: {
|
|
alias: {
|
|
"@": path.resolve(__dirname, "./src"),
|
|
},
|
|
},
|
|
})
|