v0.2.12
Features
- Support for configuring projects for development using either a production-like setup or a minimal setup via
juno dev start
, even for projects that are not yet configured.
Note: As a result, the configuration templates have been updated to include both production and development settings.
Example:
import {defineConfig} from '@junobuild/config';
export default defineConfig({
satellite: {
ids: {
development: '<DEV_SATELLITE_ID>',
production: '<PROD_SATELLITE_ID>'
},
source: '<SOURCE>',
predeploy: ['<COMMAND> build']
}
});