Merge branch 'plugin-infar-vite' of ssh.dev.azure.com:v3/alicorn-dev/KintoneAppBuilder/KintoneAppBuilder into feature-data-mapping

This commit is contained in:
Tian Dai
2024-06-04 17:49:32 +09:00
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
"scripts": { "scripts": {
"dev": "run-p watch server ngrok", "dev": "run-p watch server ngrok",
"watch": "vite build --watch --mode dev", "watch": "vite build --watch --mode dev",
"server": "vite server", "server": "vite dev --mode dev",
"ngrok": "ngrok http 4173", "ngrok": "ngrok http 4173",
"build": "run-s b:production copy:windows", "build": "run-s b:production copy:windows",

View File

@@ -26,7 +26,7 @@ export default ({ mode }) => {
}, },
server: { server: {
port: process.env.VITE_PORT, port: process.env.VITE_PORT,
open: "/dist/alc_runtime.js", // open: "/dist/alc_runtime.js",
}, },
}); });
}; };