[READ-ONLY] Mirror of https://github.com/danielroe/ripple-framework. Ripple is the presentation layer for building websites on the DPC Single Digital Presence platform.
0

Configure Feed

Select the types of activity you want to include in your feed.

ripple-framework / examples / nuxt-app / nuxt.config.ts
1.0 kB 34 lines
1import { defineNuxtConfig } from 'nuxt/config' 2export default defineNuxtConfig({ 3 runtimeConfig: { 4 public: { 5 API_URL: '', 6 tide: { 7 // These can be overridden via environment variables eg: NUXT_PUBLIC_TIDE_BASE_URL 8 // See https://nuxt.com/docs/api/configuration/nuxt-config#runtimeconfig for more info 9 baseUrl: 'https://develop.content.reference.sdp.vic.gov.au', 10 site: '8888', 11 appSearch: { 12 searchKey: '', 13 endpointBase: '', 14 engineName: '' 15 }, 16 elasticsearch: { 17 host: '', 18 index: '' 19 } 20 } 21 } 22 }, 23 // See https://nuxt.com/docs/getting-started/layers - each content type is a added as a Nuxt layer 24 extends: [ 25 '@dpc-sdp/nuxt-ripple', 26 '@dpc-sdp/ripple-tide-event', 27 '@dpc-sdp/ripple-tide-landing-page', 28 '@dpc-sdp/ripple-tide-grant', 29 '@dpc-sdp/ripple-tide-publication', 30 '@dpc-sdp/ripple-tide-media', 31 '@dpc-sdp/ripple-tide-news', 32 '@dpc-sdp/ripple-tide-search' 33 ] 34})