GithubHelp home page GithubHelp logo

Comments (7)

f3l1x avatar f3l1x commented on May 13, 2024 1

Hmm, I think I know where is the catch. Files created in build phase (during call composer run vercel) are not accessible from browser/routing/routes.

I solved it with little trick in satis example.

https://github.com/juicyfx/vercel-examples/blob/d615f48830491e54afba30d0e54f402a6e6ccc0e/php-satis/index.php#L3-L9

I am in touch with Vercel team. For now, test please this approach.


 "routes": [
      { "src": "/css/(.+)",  "dest": "/api/assets.php?file=/public/css/$1" },
      { "src": "/js/(.+)",  "dest": "/api/assets.php?file=/public/js/$1" },
      { "src": "/(.*)",  "dest": "/api/index.php" }
 ],

from php.

f3l1x avatar f3l1x commented on May 13, 2024 1

I placed it to readme. Thanks for the issue.

from php.

f3l1x avatar f3l1x commented on May 13, 2024

Hi @reed-jones.

I think there could be a problem with routing. Could you show me your routes?

You should use filesystem routing or set route css/js to assets folder.

{
  "routes": [
    { "handle": "filesystem" },
    ....
  ]
}

Take a look at https://vercel.com/docs/configuration#routes/advanced/wildcard-routes.


Btw, thanks for sponsoring me.

from php.

reed-jones avatar reed-jones commented on May 13, 2024

👍 Thanks for your work!

I don't think its routing, since I can run composer run vercel locally to build the files, (they are saved to the 'public' folder, and if I add these files to git, my routing works as expected

    "routes": [
      { "src": "/(.*)\\.(.*)$", "dest": "public/$1.$2"},
      { "src": "/(.*)",  "dest": "/api/index.php" }
    ],

following your suggestion, I tried

   "routes": [
      { "handle": "filesystem" },
      { "src": "/(.*)",  "dest": "/api/index.php" }
    ],

and

    "routes": [
      { "src": "/css/app.css",  "dest": "/public/css/app.css" },
      { "src": "/(.*)",  "dest": "/api/index.php" }
    ],

neither of which seem to be working (just returning 404). I'm not sure how vercel's build system really works, but could it be possible the files aren't persisted to disk, or got saved to /tmp or something?

from php.

reed-jones avatar reed-jones commented on May 13, 2024

awesome thanks, I'll try this soon

from php.

reed-jones avatar reed-jones commented on May 13, 2024

Works great, thanks for the idea.

from php.

guoxiangke avatar guoxiangke commented on May 13, 2024

@f3l1x Can you give a example of assets.php, thanks.
image

from php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.