mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-03-03 23:45:49 +01:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
|
// vite.config.js
|
||
|
import { defineConfig } from 'vite'
|
||
|
|
||
|
export default defineConfig({
|
||
|
server: {
|
||
|
port: '8080'
|
||
|
},
|
||
|
root: 'Website'
|
||
|
})
|