Hi,
What key do I use to exclude files/dirs from an HTML5 build? I’ve tried:
-- -- Project section -- excludeFiles = { -- Exclude unnecessary files for each platform all = { "Icon.png", "Icon-\*dpi.png", "Images.xcassets", "server", }, android = { "LaunchScreen.storyboardc", }, html5 = { "lib" } },
and
-- -- Project section -- excludeFiles = { -- Exclude unnecessary files for each platform all = { "Icon.png", "Icon-\*dpi.png", "Images.xcassets", "server", }, android = { "LaunchScreen.storyboardc", }, web = { "lib" } },
But they both give a warning and don’t seem to make a difference on the output size.
WARNING: issue found in build.settings: WARNING: unrecognized key: settings.excludeFiles.html5[] (string)
Thanks in advance.
-dev