Skip to content

Commit daefcc5

Browse files
author
Andrew Welch
committed
Run on port 3002
1 parent e93e537 commit daefcc5

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CONTAINER?=$(shell basename $(dir $(CURDIR)))-docs
33
DOCKERRUN=docker container run \
44
--name ${CONTAINER} \
55
--rm \
6-
-p 3000:3000 \
6+
-p 3002:3002 \
77
-t \
88
-v `pwd`:/app \
99
${CONTAINER}:${TAG}

docs/docs/vite.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { defineConfig } from 'vite'
2+
3+
// https://vitejs.dev/config/
4+
export default defineConfig({
5+
server: {
6+
host: '0.0.0.0',
7+
port: 3002,
8+
strictPort: true,
9+
}
10+
});

0 commit comments

Comments
 (0)