1.1.4 • Published 1 year ago

@netlify/hydrogen-platform v1.1.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Hydrogen on Netlify Edge Functions

This package is a Hydrogen platform that allows you to deploy your site to Netlify Edge. The easiest way to get started is using a template, but you can change your existing site to use Netlify Edge Functions by installing this package and following these instructions.

Installation

npm i -D @netlify/hydrogen-platform

Then add the plugin to your Vite config:

// vite.config.js

import netlifyPlugin from '@netlify/hydrogen-platform/plugin'
import shopifyConfig from './shopify.config'

export default defineConfig({
  plugins: [hydrogen(shopifyConfig), netlifyPlugin()],
  //   ...
})

You then need to specify the SSR entrypoint in your build command:

// package.json
"scripts": {
    "build" "npm run build:client && npm run build:ssr",
    "build:client": "vite build --outDir dist/client --manifest",
    "build:ssr": "cross-env WORKER=true vite build --ssr @netlify/hydrogen-platform/handler",
}

Your Netlify site should be configured to publish the dist/client directory:

# netlify.toml
[build]
command = "npm run build"
publish = "dist/client"
1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago