mirror of
https://github.com/fankes/beszel.git
synced 2025-10-19 01:39:34 +08:00
13 lines
231 B
TypeScript
13 lines
231 B
TypeScript
import { defineConfig } from 'vite'
|
|
import preact from '@preact/preset-vite'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
plugins: [preact()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
})
|