Skip to content

Commit db4eead

Browse files
committed
fix
Signed-off-by: Mikhail Petrov <[email protected]>
1 parent 4b495a6 commit db4eead

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ $(SITE_DIR):
1414
docker run \
1515
-v $$(pwd)/src:/usr/src/app/src \
1616
-v $$(pwd)/public:/usr/src/app/public \
17+
-v $$(pwd)/index.html:/usr/src/app/index.html \
18+
-v $$(pwd)/vite.config.mjs:/usr/src/app/vite.config.mjs \
1719
-v $$(pwd)/package.json:/usr/src/app/package.json \
1820
-v $$(pwd)/.env:/usr/src/app/.env \
1921
-v $$(pwd)/$(SITE_DIR):/usr/src/app/$(SITE_DIR) \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Set variables in the `.env` file before executing the commands:
3636
- Start [neofs-dev-env](https://github.com/nspcc-dev/neofs-dev-env)
3737
- Update `.env`
3838
- Execute `npm install`
39-
- Run local `npm start`
39+
- Run local `npm run build`
4040

4141
# Deployment to production
4242

vite.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export default defineConfig({
88
},
99
build: {
1010
sourcemap: false,
11-
outDir: './send.fs.neo.org',
11+
outDir: 'send.fs.neo.org',
1212
},
1313
});

0 commit comments

Comments
 (0)