An example site showing how to do predictive prefetches with 11ty.
git clone [email protected]:shortdiv/cant-dutch-this.git my-first-predictive-prefetch
cd my-first-predictive-prefetch
Specifically have a look at .eleventy.js
to see if you want to configure any Eleventy options differently.
npm install OR yarn
npm run build OR yarn build
Or build and host locally for local development
npm run serve OR yarn serve
Or build automatically when a template changes:
npm run watch OR yarn watch
Or in debug mode:
DEBUG=* npx eleventy
Go to the Credentials page in the Google APIs console.
If you don't have an existing project, click "Create" to create a new project. Otherwise, select an existing project from the project dropdown.
Select "Service Account key" from the "Create credentials" dropdown.
Fill out the form for creating a service account key:
Service account dropdown: Select "New Service Account". Service account name: Create a service account a name. Role: Select "Service Accounts" > "Service Account User". Service account ID: Leave as is. Key type: Select P12 key. Click Create.
Note the private key password, you'll need this when you're converting your password to a pem file.
Move this key into the root directory for this project, outside of /src.
Generate a *.p12 certificate by running this command from the directory for this project:
$ openssl pkcs12 -in *.p12 -out key.pem -nodes -clcerts
You now need to add this service account to GA for the proper permissions.
In your GA account, create a new user and add the necessary permissions.
Add a new user. (Admin > User Management > + > Add New Users) Email Address: [email protected].
Permissions: Select "Read & Analyze."
Note that you may need to Enable the Google Analytics Reporting API in your project
We'll need to now configure our env variables. To do this in 11ty, we'll lean on nodeenv, which should alr be a dependency in this project. To take advantage of this, add VIEW_ID
and SERVICE_ACCOUNT
to a .env file in your root dir. You can find these values in the view column of the accounts dropdown in GA.
VIEW_ID=12345678 SERVICE_ACCOUNT_EMAIL=cant-dutch-this@some-example-account-123456.iam.gserviceaccount.com