1 Star 0 Fork 0

hhhshen/黄申的动效库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
vite.config.ts 2.02 KB
一键复制 编辑 原始数据 按行查看 历史
hhhshen 提交于 2024-01-31 16:50 . es
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import path from "path";
import AutoImport from "unplugin-auto-import/vite";
import Components from "unplugin-vue-components/vite";
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
esbuild: {
pure: ["console.log", "debugger"],
},
server: {
port: 5006,
open: true,
headers: {
"Access-Control-Allow-Origin": "*",
},
proxy: {
// 将所有以/api开头的请求代理到目标服务器
"/api": {
target: "http://192.168.2.133:5007",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
},
// build: {
// rollupOptions: {
// output: {
// chunkFileNames: "static/js/[name]-[hash].js",
// entryFileNames: "static/js/[name]-[hash].js",
// assetFileNames: "static/[ext]/[name]-[hash].[ext]",
// manualChunks(id) {
// //静态资源分拆打包
// if (id.includes("node_modules")) {
// return id
// .toString()
// .split("node_modules/")[1]
// .split("/")[0]
// .toString();
// }
// },
// },
// },
// target: "es2015", //
// cssTarget: "chrome79", // ѡ û Ϊ CSS ѹ һ ͬ target
// chunkSizeWarningLimit: 2000, // chunk С ƣ kbs Ϊ λ
// outDir: "dist", // ָ ·
// sourcemap: false, //是否构建source map 文件
// terserOptions: {
// // 生产环境移除console
// compress: {
// drop_console: true,
// drop_debugger: true,
// },
// },
// assetsDir: "static",
// manifest: false,
// },
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hhhshen/memory-networkA.git
[email protected]:hhhshen/memory-networkA.git
hhhshen
memory-networkA
黄申的动效库
master

搜索帮助