uicrooks / shopify-theme-lab

Shopify theme development environment using Liquid, Vue and Tailwind CSS. Built on top of Shopify CLI 🧪
https://uicrooks.github.io/shopify-theme-lab-docs/
MIT License
743 stars 132 forks source link

[Question]: Add App and/or Filters #172

Closed nicoagp closed 1 year ago

nicoagp commented 1 year ago

Operating system

Mac

Node.js version

16

Shopify CLI version

2

Browsers

Chrome

Version

4 (Current)

Modifications

No response

Details

I am trying to install an app (boostcommerce filters) manually and got stuck several times mainly because I think it relies on normal shopify structure. Has anyone install this app before? or another similar app ?

Any recommendation with filters using this repo/project/structure ?

Thank you!

Notice

lukecharle commented 1 year ago

You should be fine using it. Once you install the app it will have installed files required. Do a shopify pull then update your webpack.config.js to ignore the files needed. For example here I've made sure it doesn't delete a file containing algolia_config. This will ensure when running npm run start it won't then remove these files you retrieved doing shopify pull.

new CleanWebpackPlugin({
    cleanOnceBeforeBuildPatterns: ['**/*', '!*static*', '!*algolia_config*'],
}),