3 Star 20 Fork 9

HZY/hzy-admin-spa-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
HZY 提交于 2022-03-21 16:58 . 🎉
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
base: process.env.NODE_ENV == "production" ? "/client/" : "/",
server: {
port: 8866
},
resolve: {
extensions: ['.js', '.json', '.vue', '.scss', '.css', '.less'],
// alias: {
// '@/': path.resolve('/src/'),
// },
alias: [
{
find: '@/',
replacement: '/src/',
},
{
find: '@antv/x6',
replacement: '@antv/x6/lib',
},
{
find: '@antv/x6-vue-shape',
replacement: '@antv/x6-vue-shape/lib',
},
]
},
// CSS 预处理器
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true
}
},
// postcss: {
// plugins: [
// require('autoprefixer')
// ]
// }
},
build: {
assetsDir: 'static/img',
rollupOptions: {
output: {
chunkFileNames: "static/js/[name]-[hash].js",
entryFileNames: "static/js/[name]-[hash].js",
assetFileNames: "static/[ext]/[name]-[hash].[ext]"
}
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hzy6/hzy-admin-spa-ui.git
git@gitee.com:hzy6/hzy-admin-spa-ui.git
hzy6
hzy-admin-spa-ui
hzy-admin-spa-ui
master

搜索帮助