12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- import autoprefixer from 'autoprefixer'
- import dayjs from 'dayjs'
- import { resolve } from 'path'
- import type { ConfigEnv, UserConfig } from 'vite'
- import { defineConfig, loadEnv } from 'vite'
- import { dependencies, devDependencies, name, version } from './package.json'
- import {
- assetsDir,
- base,
- chunkSizeWarningLimit,
- cssCodeSplit,
- minify,
- open,
- outDir,
- outputHash,
- port,
- reportCompressedSize,
- } from '/@/config'
- import { createVitePlugin, createWatch } from '/@vab/build'
- const lastBuildTime = dayjs().format('YYYY-MM-DD HH:mm:ss')
- const info = { dependencies, devDependencies, lastBuildTime, name, version }
- export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
- process.env['VITE_APP_UPDATE_TIME'] = info.lastBuildTime
- process.env['VITE_USER_NODE_ENV'] = mode
- const root = process.cwd()
- const env = loadEnv(mode, root)
- createWatch(env)
- console.log(info.lastBuildTime)
- return {
- base,
- root,
- server: {
- open,
- port,
- hmr: {
- overlay: true,
- },
- host: '0.0.0.0',
- },
- resolve: {
- alias: {
- '~/': `${resolve(__dirname, '.')}/`,
- '/@/': `/${resolve(__dirname, 'src')}/`,
- '/@vab/': `/${resolve(__dirname, 'library')}/`,
- '/@types/': `/${resolve(__dirname, 'src/types')}/`,
- },
- },
- 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]',
- },
- },
- minify,
- },
- css: {
- postcss: {
- plugins: [
- autoprefixer({ grid: true }),
- {
- 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),
- }
- })
|