Hello team, When I deploy the theme, I get the fol...
# suitecommerce
c
Hello team, When I deploy the theme, I get the following error every time: Error Message: There is already a theme called: XXX - 3.2.0 How can I resolve this error?
c
Did you get the theme using
gulp theme:fetch
?
c
Yes @Chris. I did. It's checking if my theme is a published theme and asking the theme details even though there is a theme deployed.
It should just update the theme instead asking the details of new theme.
I remember there was a fix for this that involved updating the
config.json
file, but I donโ€™t recall the exact steps. I believe @Steve Goldberg mentioned it a while back.
๐Ÿค” 1
s
Try this: go to Gulp > Config > Config.json and remove the
create
and
advanced
properties from the object:
Copy code
"deploy_config": {
        "update": true,
        "chunk_size": 80,
        "create": true,
        "advanced": true
    },
๐Ÿ‘€ 1
c
Works for me. Ironically, I was already working on a theme and just had it happen.
I removed the
advanced: true
property and I didn't have the
create: true
property.
c
Yes it works. Thanks @Steve Goldberg and @Chris
๐Ÿ‘๐Ÿป 1
s
netsuite halo