mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 00:42:38 +10:00
13 lines
217 B
TypeScript
13 lines
217 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
resolve: {
|
|
alias: {
|
|
'@': '/src'
|
|
}
|
|
}
|
|
})
|