mirror of
https://github.com/MetaCubeX/metacubexd.git
synced 2024-11-10 17:25:34 +08:00
19 lines
505 B
TypeScript
19 lines
505 B
TypeScript
import { defineConfig, splitVendorChunkPlugin } from 'vite'
|
|
import { VitePWA } from 'vite-plugin-pwa'
|
|
import solidPlugin from 'vite-plugin-solid'
|
|
import pkgJSON from './package.json'
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
build: { chunkSizeWarningLimit: 1000 },
|
|
resolve: { alias: { '~': '/src' } },
|
|
define: {
|
|
'import.meta.env.version': JSON.stringify(pkgJSON.version),
|
|
},
|
|
plugins: [
|
|
solidPlugin(),
|
|
splitVendorChunkPlugin(),
|
|
VitePWA({ registerType: 'autoUpdate' }),
|
|
],
|
|
})
|