With Seaside30 you simply don&#39;t load the packages you don&#39;t want for deployment. If my reading of ConfigurationOfSeaside30 is correct, try:<div><br></div><div>(ConfigurationOfSeaside30 project latestVersion) load: #(&#39;Base&#39;) &quot;core seaside with no development tools&quot;</div>
<div><br></div><div>other options are:</div><div><br></div><div>(ConfigurationOfSeaside30 project latestVersion) load: #(&#39;Base-Test&#39;) &quot;as above with tests&quot;</div><div><br></div><div>or:</div><div><br></div>
<div>(ConfigurationOfSeaside30 project latestVersion) load: #(&#39;Development&#39;) &quot;Base and development&quot;</div><div><br></div><div>or:</div><div><br></div><div>(ConfigurationOfSeaside30 project latestVersion) load: #(&#39;Development Tests&#39;) &quot;as above including all tests&quot;</div>
<div><br><br></div>