mirror of
https://github.com/BeamMP/BeamMP-Website.git
synced 2026-04-12 18:56:10 +00:00
17 lines
295 B
JavaScript
17 lines
295 B
JavaScript
import path from 'path'
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src'),
|
|
},
|
|
},
|
|
server: {
|
|
port: 3000
|
|
}
|
|
})
|