mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 06:50:05 +08:00
90 lines
1.9 KiB
TypeScript
90 lines
1.9 KiB
TypeScript
import { defineConfig } from 'vite'
|
|
|
|
import config from './cfg'
|
|
import pkg from './package.json'
|
|
import vitePlugins from './vite.pliugin.config'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(async ({ mode }) => {
|
|
const { dependencies, devDependencies, name, version } = pkg
|
|
const {
|
|
server,
|
|
buildOptions,
|
|
alias,
|
|
copyright,
|
|
sideBarLogo,
|
|
mixinCSS,
|
|
appPrimaryColor,
|
|
base,
|
|
} = config
|
|
|
|
const __APP_CFG__ = {
|
|
pkg: { dependencies, devDependencies, name, version },
|
|
layout: {
|
|
copyright,
|
|
sideBarLogo,
|
|
},
|
|
appPrimaryColor,
|
|
}
|
|
|
|
return {
|
|
base: base || '/',
|
|
define: {
|
|
__APP_CFG__: JSON.stringify(__APP_CFG__),
|
|
},
|
|
resolve: {
|
|
alias: alias,
|
|
},
|
|
plugins: vitePlugins(mode),
|
|
optimizeDeps: {
|
|
include: ['vue', 'vue-router', 'pinia', 'vue-i18n', '@vueuse/core'],
|
|
},
|
|
esbuild: {
|
|
pure: ['console.log'],
|
|
},
|
|
build: {
|
|
...buildOptions(mode),
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: (id) => {
|
|
const isUtils = () => id.includes('src/utils/')
|
|
const isHooks = () =>
|
|
id.includes('src/hooks/template') || id.includes('src/hooks/web')
|
|
const isNodeModules = () => id.includes('node_modules')
|
|
const index = id.includes('pnpm') ? 1 : 0
|
|
|
|
if (isUtils()) {
|
|
return 'utils'
|
|
}
|
|
|
|
if (isHooks()) {
|
|
return 'hooks'
|
|
}
|
|
|
|
if (isNodeModules()) {
|
|
return id
|
|
.toString()
|
|
.split('node_modules/')[1]
|
|
.split('/')
|
|
[index].toString()
|
|
}
|
|
},
|
|
},
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
additionalData: mixinCSS,
|
|
},
|
|
},
|
|
modules: {
|
|
localsConvention: 'camelCaseOnly',
|
|
},
|
|
},
|
|
server: {
|
|
...server,
|
|
},
|
|
}
|
|
})
|