npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@by-association-only/vite-plugin-shopify

v2.2.0

Published

Vite plugin providing integration for Shopify themes

Downloads

19

Readme

# vite-plugin-shopify

vite-plugin-shopify aims to integrate Vite as seamlessly as possible with Shopify themes for a best-in-class developer experience.

Features

  • ⚡️ Everything Vite provides, plus:
  • 🤖 Automatic entrypoint detection
  • 🏷 Smart generation of script and link tags for entrypoints
  • 🌎 Full support for assets served from Shopify CDN
  • 👌 Zero-Config

Install

npm i vite-plugin-shopify -D

# yarn
yarn add vite-plugin-shopify -D

# pnpm
pnpm add vite-plugin-shopify -D

Usage

Vite Plugin

Add the shopify plugin to vite.config.js / vite.config.ts:

import viteShopify from "vite-plugin-shopify";

export default {
  plugins: [
    /* Plugin options are not required, defaults shown */
    viteShopify({
      // Root path to your Shopify theme directory (location of snippets, sections, templates, etc.)
      themeRoot: "./",
      // Front-end source code directory
      sourceCodeDir: "frontend",
      // Front-end entry points directory
      entrypointsDir: "frontend/entrypoints",
      // Additional files to use as entry points (accepts an array of file paths or glob patterns)
      additionalEntrypoints: []
    })
  ]
};

You can customize this file as needed. Check Vite's plugins and config reference for more info.

File structure

The Shopify Vite plugin treats each script and stylesheet in the entrypoints directory (frontend/entrypoints by default) as an input for the Vite build. You can organize the rest of your frontend code however you'd like. For example:

frontend
  ├── entrypoints
  │   │ # Vite entry point files
  │   │── theme.ts
  │   └── theme.scss
  │ # Additional frontend source files to be imported from entrypoints
  │── components
  │   └── App.vue
  │── stylesheets
  │   └── my_styles.css
  └── images
      └── logo.svg
  • Only script and stylesheet files are supported as entrypoints.
  • You can customize where vite-plugin-shopify loads entrypoints by specifying a value for the entrypointsDir plugin option.

Adding scripts and styles to your theme

In your <head> element add this

{%- render 'vite-client' -%}
  • vite-plugin-shopify will generate vite-client.liquid.
  • This will add a <script> tag to load the ViteJS HMR client.
  • This will only render if the dev server is running.

Then render the vite-tag snippet (in your <head> element too) to insert tags for loading assets from a given entrypoint file:

{% render 'vite-tag' with 'theme.ts' %}
  • vite-plugin-shopify will generate new versions of vite-tag.liquid during development and on each production build.
  • The vite-tag snippet will render HTML tags to load the provided entrypoint.
  • Script tags are generated with a type="module" and crossorigin attributes like Vite does by default.
  • In production mode, the asset_url filter is used to load resources from the Shopify CDN.
  • In production mode, the vite-tag snippet will automatically render separate tags for loading stylesheets and preloading imported JS chunks.
  • When running the development server, these tags are omitted, as Vite will load the dependencies as separate modules.
{% render 'vite-tag' with 'theme.ts' %}

# HTML output (development)
<script src="http://localhost:5173/theme.ts" type="module"></script>

# HTML output (production)
<link rel="stylesheet" href="{{ 'theme.4d95c99b.css' | asset_url }}">
<script src="{{ 'theme.3b623fca.js' | asset_url }}" type="module" crossorigin="anonymous"></script>
<link href="{{ 'lodash.13b0d649.js' | asset_url }}" rel="modulepreload" as="script" crossorigin="anonymous">
  • In development mode, assets are loaded from the Vite development server host.
  • In production mode, assets are loaded from the Shopify CDN using the asset_url filter and a relative base path.

Loading additionalEntrypoints:

# Relative to sourceCodeDir
{%- render 'vite-tag' with '@/foo.ts' -%}
{%- render 'vite-tag' with '~/foo.ts' -%}

# Relative to themeRoot
{%- render 'vite-tag' with '/resources/bar.ts' -%} # leading slash is required

Preloading stylesheets:

{%- render 'vite-tag' with 'theme.css', preload_stylesheet: true -%}

Note: The preload_stylesheet parameter will enable the preload parameter of the stylesheet_tag, use it sparingly e.g. consider preloading only render-blocking stylesheets. Learn more

Import aliases

For convenience, ~/ and @/ are aliased to your frontend folder, which simplifies imports:

import App from "@/components/App.vue";
import "@/styles/my_styles.css";

Example

See the vite-shopify-example theme for a basic demonstration of vite-plugin-shopify usage.

Bugs

Please create an issue if you found any bugs, to help us improve this project!

Thanks

We would like to specifically thank the following projects, for inspiring us and helping guide the implementation for this plugin by example: