Skip to content

Commit

Permalink
Update page content
Browse files Browse the repository at this point in the history
  • Loading branch information
tuanpham-barrel committed Jun 25, 2024
1 parent cbd18d2 commit 8df7e77
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/AboutBarrel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div class="about-barrel__content">
<p>
The Shopify Vite Plugin was developed by Barrel.<br />
The Volt - Shopify Vite Plugin was developed by Barrel.<br />
Barrel partners with brands to design, build, and optimize web experiences.
</p>

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const socialLinks = data.site.value?.themeConfig?.socialLinks || [];
<div class="footer">
<div class="container">
<div class="footer__logo">
<img src="/logo-footer.svg" alt="Shopify Vite Plugin" />
<img src="/logo-footer.svg" alt="Volt - Shopify Vite Plugin" />
</div>
<div class="footer__nav">
<ul class="footer-nav__list">
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/HomeCallout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import BrandButtons from './BrandButtons.vue'
<div class="home-callout">
<div class="container">
<div class="home-callout-text">
Upgrade your Shopify theme with the Shopify Vite Plugin
Upgrade your Shopify theme with the Volt - Shopify Vite Plugin
</div>
<BrandButtons />
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Configuration Reference

The following reference covers all supported configuration options in Shopify Vite Plugin.
The following reference covers all supported configuration options in Volt - Shopify Vite Plugin.

::: code-group
```js [vite.config.js]
Expand Down
8 changes: 4 additions & 4 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

Shopify Vite Plugin is a project that aims to integrate [Vite](https://vitejs.dev/) as seamlessly
VoltShopify Vite Plugin is a project that aims to integrate [Vite](https://vitejs.dev/) as seamlessly
as possible with [Shopify themes](https://shopify.dev/docs/themes) to optimize your theme development experience by
providing sensible built-in configurations that should work for the majority of themes and a
snippet to load your assets for development and production.
Expand Down Expand Up @@ -79,7 +79,7 @@ export default {
}
```

The Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
The Volt - Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoints` folder in the root of your project as entry points for Vite.

```
Expand All @@ -96,7 +96,7 @@ Read the [Configuration Reference](/guide/configuration) of the Shopify Vite Plu

### Loading your Scripts and Styles

The Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
The Volt - Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
to load your assets.

With your Vite entry points configured, you only need to reference them with the `vite-tag` snippet that you add to the `<head>` of your theme's layout:
Expand Down Expand Up @@ -233,7 +233,7 @@ You can pass the `preload_stylesheet` variable to the `vite-tag` snippet to enab

## Advanced Customization

Out of the box, the Shopify Vite Plugin uses sensible conventions to help you add Vite with zero configuration to existing Shopify themes; however,
Out of the box, the Volt - Shopify Vite Plugin uses sensible conventions to help you add Vite with zero configuration to existing Shopify themes; however,
sometimes you may need to customize the Plugin's behavior.

Every configuration option is described in the [Configuration Reference](/guide/configuration).
2 changes: 1 addition & 1 deletion docs/guide/plugins.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Recommended Plugins

Using the Shopify Vite Plugin is even more enjoyable with the following Plugins.
Using the Volt - Shopify Vite Plugin is even more enjoyable with the following Plugins.

## [vite-plugin-shopify-import-maps](https://github.com/slavamak/vite-plugin-shopify-import-maps)

Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-shopify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

### Major Changes

Shopify Vite Plugin is an ESM-only package. To use it with [Vite 5](https://vitejs.dev/blog/announcing-vite5), we need
Volt - Shopify Vite Plugin is an ESM-only package. To use it with [Vite 5](https://vitejs.dev/blog/announcing-vite5), we need
to add `"type": "module"` to the `package.json` of our projects OR change the extension of our Vite config file to `.mjs`/`.mts`.

- Vite 5 support ([#89](https://github.com/barrel/shopify-vite/pull/89))
Expand Down
4 changes: 2 additions & 2 deletions packages/vite-plugin-shopify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
}
```

The Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
The Volt - Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoints` folder in the root of your project as entry points for Vite.

```
Expand All @@ -64,7 +64,7 @@ languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoin

### Adding scripts and styles to your theme

The Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
The Volt - Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
to load your assets.

With your Vite entry points configured, you only need to reference them with the `vite-tag` snippet that you add to the `<head>` of your theme's layout:
Expand Down

0 comments on commit 8df7e77

Please sign in to comment.