Add skill for gameplay entry type workflows
This commit is contained in:
@@ -33,6 +33,9 @@ export default defineConfig(({mode}) => {
|
||||
`http://127.0.0.1:${env.GENARRATIVE_API_PORT || '3100'}`;
|
||||
const runtimeServerTarget =
|
||||
env.GENARRATIVE_RUNTIME_SERVER_TARGET || rustServerTarget;
|
||||
const adminWebTarget =
|
||||
env.ADMIN_WEB_TARGET ||
|
||||
`http://127.0.0.1:${env.ADMIN_WEB_PORT || '3102'}`;
|
||||
|
||||
return {
|
||||
root: __dirname,
|
||||
@@ -62,6 +65,11 @@ export default defineConfig(({mode}) => {
|
||||
// Do not modify; file watching is disabled to prevent flickering during agent edits.
|
||||
hmr: process.env.DISABLE_HMR !== 'true',
|
||||
proxy: {
|
||||
'/admin/': {
|
||||
target: adminWebTarget,
|
||||
changeOrigin: true,
|
||||
secure: false,
|
||||
},
|
||||
'/api/auth': {
|
||||
target: runtimeServerTarget,
|
||||
changeOrigin: true,
|
||||
|
||||
Reference in New Issue
Block a user