[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.
719 B
33 lines
1import 'dotenv/config'
2import { defineNuxtConfig } from 'nuxt/config'
3import { createResolver } from '@nuxt/kit'
4
5const { resolve } = createResolver(import.meta.url)
6
7export default defineNuxtConfig({
8 runtimeConfig: {
9 public: {
10 tide: {
11 baseUrl: 'https://develop.content.reference.sdp.vic.gov.au',
12 site: '8888',
13 config: {
14 apiPrefix: '/api/v1',
15 auth: {
16 username: 'dpc',
17 password: 'sdp'
18 }
19 }
20 },
21 API_URL: ''
22 }
23 },
24 robots: {
25 configPath: resolve('./robots.config.ts')
26 },
27 modules: [
28 'nuxt-proxy',
29 '@dpc-sdp/ripple-ui-core/nuxt',
30 '@dpc-sdp/ripple-ui-forms/nuxt',
31 '@nuxtjs/robots'
32 ]
33})