I just want to know portal modify locally

I just wanna change portal form input placeholder text. so I follow link below

but, I can’t change anything

i can’t find small answer about little problems

please let me know how to modify portal form input tag placeholder.

My develop environment

Machine : Mac Book Pro M1 and docker(OS:debian)

config.development.json

{
  "url": "http://localhost:2368/",
  "server": {
    "port": 2368,
    "host": "127.0.0.1"
  },
  "database": {
    "client": "sqlite3",
    "connection": {
      "filename": "/home/yhkim/ghost/content/data/ghost-local.db"
    }
  },
  "mail": {
    "transport": "Direct"
  },
  "logging": {
    "transports": [
      "file",
      "stdout"
    ]
  },
  "process": "local",
  "paths": {
    "contentPath": "/home/yhkim/ghost/content"
  },
  "portal": {
    "url": "http://localhost:2368/portal.min.js"
  }
}

and where do i put portal.min.js? now, I put portal.min.js in 3 place.

but, it doesn’t build and missing on chrome

<script defer src="http://localhost:2368/portal.min.js" data-i18n="false" data-ghost="http://localhost:2368/" data-key="dd1150c9d6cfebdfd68e0d4f5d" data-api="http://localhost:2368/ghost/api/content/" crossorigin="anonymous"></script><style id="gh-members-styles">

again I just wanna simple tiny thing ‘portal input tag placeholder text’

You need to edit config.production.json (located in the ghost root directory) to give it the url for the modified portal, which could be in your theme’s assets directory. [The locations you’re showing won’t work unless one of those is actually the active theme. It needs to be somewhere that it’ll get a valid URL.] See Configuration - Adapt your publication to suit your needs for how to set that up.

(If you’re in a docker container or similar, you’ll need to do the equivalent with variables.)

1 Like

as your comments before, I’ve tried to find the valid url information and dug thr ghost documents and Google. but i can’t find that. maybe can i get hint about ‘vaild url’? or do i give detail information of my development environment?

ThanX! your hint about ‘url’ I can solve my problem with chatGPT! Stuper Thank you very much!!