123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- import autoprefixer from 'autoprefixer'
- import dayjs from 'dayjs'
- import { resolve } from 'node:path'
- import type { ConfigEnv, UserConfig } from 'vite'
- import { defineConfig, loadEnv } from 'vite'
- import {
- assetsDir,
- base,
- chunkSizeWarningLimit,
- cssCodeSplit,
- exclude,
- https,
- include,
- minify,
- open,
- outDir,
- outputHash,
- port,
- reportCompressedSize,
- } from '/@/config'
- import { createVitePlugin, createWatch } from '/@vab/build'
- const lastBuildTime = dayjs().format('YYYY-MM-DD HH:mm:ss')
- export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
- process.env['VITE_APP_UPDATE_TIME'] = lastBuildTime
- process.env['VITE_USER_NODE_ENV'] = mode
- const root = process.cwd()
- const env = loadEnv(mode, root)
- createWatch(env)
- console.log(lastBuildTime)
- return {
- base,
- root,
- server: {
- open,
- port,
- hmr: {
- overlay: true,
- },
- host: '0.0.0.0',
- warmup: {
- clientFiles: ['./index.html', './library/{components,layouts}/*', './src/{views,plugins}/*'],
- },
- https,
- fs: {
- cachedChecks: true,
- },
- },
- resolve: {
- alias: {
- '~/': `${resolve(__dirname, '.')}/`,
- '/@/': `/${resolve(__dirname, 'src')}/`,
- '/@vab/': `/${resolve(__dirname, 'library')}/`,
- },
- },
- optimizeDeps: {
- include,
- exclude,
- },
- build: {
- assetsDir,
- chunkSizeWarningLimit,
- cssCodeSplit,
- outDir,
- reportCompressedSize,
- rollupOptions: {
- onwarn: () => {
- return
- },
- output: {
- chunkFileNames: outputHash ? 'static/js/[name]-[hash].js' : 'static/js/[name].js',
- entryFileNames: outputHash ? 'static/js/[name]-[hash].js' : 'static/js/[name].js',
- assetFileNames: outputHash ? 'static/[ext]/[name]-[hash].[ext]' : 'static/[ext]/[name].[ext]',
- manualChunks: {
- 'vsv-element-plus': ['element-plus'],
- 'vsv-nprogress': ['nprogress'],
- 'vsv-icon': ['vsv-icon'],
- 'vsv-echarts': ['echarts'],
- },
- },
- },
- minify,
- sourcemap: false,
- },
- css: {
- postcss: {
- plugins: [
- autoprefixer({ grid: true }) as any,
- {
- postcssPlugin: 'internal:charset-removal',
- AtRule: {
- charset: (atRule: { name: string; remove: () => void }) => {
- if (atRule.name === 'charset') atRule.remove()
- },
- },
- },
- ],
- },
- preprocessorOptions: {
- scss: {
- sassOptions: { outputStyle: 'expanded' },
- // additionalData(content: string, loaderContext: string) {
- // return ['variables.scss'].includes(basename(loaderContext))
- // ? content
- // : `@use "~/library/styles/variables.scss" as *;${content}`
- // },
- },
- },
- devSourcemap: true,
- },
- plugins: createVitePlugin(env),
- define: {
- // 如果您必须使用华为组件库且打包报错,请放开该行,放开注释后会将您的环境变量暴露给华为组件库
- // 'process.env': { ...process.env },
- },
- }
- })
|