Level 51
Add the meta tag to your layout or blade template...or whatever you are using. Should look something like:
<meta name="stripe-key" content="{{ env('STRIPE_KEY') }}">
Then be sure to put the STRIPE_KEY=actual_token_here in your .env file.
Then you can access the meta tag in JS and use it to get your customer token.