1 Star 0 Fork 9

HUTbigold/sonic-cloud

forked from SonicCloudOrg/sonic-cloud 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
vite.config.js 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
ZhouYixun 提交于 2022-09-08 11:21 . Update vite.config.js
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import Markdown from 'vite-plugin-md'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import {ElementPlusResolver} from 'unplugin-vue-components/resolvers'
import ElementPlus from 'unplugin-element-plus/vite'
Date.prototype.format = function (fmt) {
const o = {
"M+": this.getMonth() + 1, //月份
"d+": this.getDate(), //日
"h+": this.getHours(), //小时
"m+": this.getMinutes(), //分
"s+": this.getSeconds(), //秒
"q+": Math.floor((this.getMonth() + 3) / 3), //季度
"S": this.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt)) {
fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
}
for (const k in o) {
if (new RegExp("(" + k + ")").test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
}
}
return fmt;
}
const editTime = new Date().format("yyyy-MM-dd hh:mm:ss")
export default defineConfig({
define: {
editTime: JSON.stringify(editTime)
},
plugins: [
vue({
include: [/\.vue$/, /\.md$/],
}),
Markdown(),
AutoImport({
resolvers: [ElementPlusResolver()],
}),
Components({
resolvers: [ElementPlusResolver()],
}),
ElementPlus()
],
// base: "sonic-cloud",
base: "//sonic-assets-hongkong.oss-cn-hongkong.aliyuncs.com/",
build: {
rollupOptions: {
output: {
manualChunks(id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString();
}
}
}
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/hutbigold/sonic-cloud.git
git@gitee.com:hutbigold/sonic-cloud.git
hutbigold
sonic-cloud
sonic-cloud
main

搜索帮助