49 lines
1.0 KiB
TypeScript
49 lines
1.0 KiB
TypeScript
import { UserConfigExport } from "vite";
|
|
import vue from "@vitejs/plugin-vue";
|
|
import { resolve } from "path";
|
|
|
|
export default (): UserConfigExport => {
|
|
return {
|
|
publicDir: false,
|
|
resolve: {
|
|
alias: [
|
|
{
|
|
find: "@",
|
|
replacement: resolve(process.cwd(), "./"),
|
|
},
|
|
],
|
|
},
|
|
plugins: [vue()],
|
|
build: {
|
|
cssCodeSplit: false,
|
|
outDir: "lib",
|
|
emptyOutDir: true,
|
|
lib: {
|
|
entry: resolve(process.cwd(), "./src/index.ts"),
|
|
name: "layui-vue",
|
|
formats: ["es"],
|
|
fileName: (name) => `index.js`,
|
|
},
|
|
terserOptions: {
|
|
compress: {
|
|
drop_console: true,
|
|
drop_debugger: true,
|
|
pure_funcs: ["console.log"],
|
|
},
|
|
output: {
|
|
comments: true,
|
|
},
|
|
},
|
|
rollupOptions: {
|
|
output: {
|
|
globals: {
|
|
vue: "Vue",
|
|
},
|
|
assetFileNames: "index.css",
|
|
},
|
|
external: ["vue"],
|
|
},
|
|
},
|
|
};
|
|
};
|