Skip to content

v0.2.12

Compare
Choose a tag to compare
@peterpeterparker peterpeterparker released this 12 Apr 17:25
· 7 commits to main since this release

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']
  }
});