Defines the app port (8084)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
aarbit 2024-07-28 16:55:13 -05:00
parent 41f498d85d
commit cf302138df

View File

@ -3,5 +3,16 @@ import react from '@vitejs/plugin-react-swc'
// https://vitejs.dev/config/
export default defineConfig({
base: "/",
plugins: [react()],
})
preview: {
port: 8084,
strictPort: true,
},
server: {
port: 8084,
strictPort: true,
host: true,
//origin: "http://0.0.0.0:8084",
},
})