mirror of
https://github.com/fankes/beszel.git
synced 2025-10-18 17:29:28 +08:00
16 lines
275 B
Go
16 lines
275 B
Go
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
esbuild: {
|
|
legalComments: 'external',
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
})
|