Using a CDN

Are you deploying to a CDN? That's awesome :) Once you've made sure that your built files are uploaded to the CDN, configure it in Encore:

CDN にデプロイしていますか?素晴らしいですね :) ビルドしたファイルが CDN にアップロードされていることを確認したら、Encore で設定します。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// webpack.config.js
  // ...

  Encore
      .setOutputPath('public/build/')
      // in dev mode, don't use the CDN
      .setPublicPath('/build');
      // ...
  ;

+ if (Encore.isProduction()) {
+     Encore.setPublicPath('https://my-cool-app.com.global.prod.fastly.net');
+
+     // guarantee that the keys in manifest.json are *still*
+     // prefixed with build/
+     // (e.g. "build/dashboard.js": "https://my-cool-app.com.global.prod.fastly.net/dashboard.js")
+     Encore.setManifestKeyPrefix('build/');
+ }

That's it! Internally, Webpack will now know to load assets from your CDN - e.g. https://my-cool-app.com.global.prod.fastly.net/dashboard.js.

それでおしまい!内部的には、Webpack は CDN からアセットをロードすることを認識します。 https://my-cool-app.com.global.prod.fastly.net/dashboard.js。

Note

ノート

It's still your responsibility to put your assets on the CDN - e.g. by uploading them or by using "origin pull", where your CDN pulls assets directly from your web server.

資産を CDN に置くのは、依然としてあなたの責任です。それらをアップロードするか、CDN が Web サーバーからアセットを直接プルする「オリジン プル」を使用します。

You do need to make sure that the script and link tags you include on your pages also use the CDN. Fortunately, the entrypoints.json paths are updated to include the full URL to the CDN.

ページに含めるスクリプト タグとリンク タグも CDN を使用していることを確認する必要があります。幸いなことに、entrypoints.json パスが更新され、CDN への完全な URL が含まれるようになりました。

When deploying to a subdirectory of your CDN, you must add the path at the end of your URL - e.g. Encore.setPublicPath('https://my-cool-app.com.global.prod.fastly.net/awesome-website') will generate assets URLs like https://my-cool-app.com.global.prod.fastly.net/awesome-website/dashboard.js

CDN のサブディレクトリにデプロイする場合は、URL の末尾にパスを追加する必要があります。 Encore.setPublicPath('https://my-cool-app.com.global.prod.fastly.net/awesome-website') は、https://my-cool-app.com.global.prod のようなアセット URL を生成します.fastly.net/awesome-website/dashboard.js

If you are using Encore.enableIntegrityHashes() and your CDN and your domain are not the same-origin, you may need to set the crossorigin option in your webpack_encore.yaml configuration to anonymous or use-credentials to overcome CORS errors.

Encore.enableIntegrityHashes() を使用していて、CDN とドメインが同じオリジンではない場合、CORS エラーを克服するために、webpack_encore.yaml 構成で crossorigin オプションを anonymous または use-credentials に設定する必要がある場合があります。