1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-14 00:59:06 +00:00
bramw_baserow/web-frontend/config/nuxt.config.test.js
2020-04-03 15:01:47 +00:00

15 lines
352 B
JavaScript

import { resolve } from 'path'
import _ from 'lodash'
import base from './nuxt.config.base.js'
export default _.assign({}, base(), {
rootDir: resolve(__dirname, '../'),
css: [],
dev: false,
debug: false,
env: {
// The API base url, this will be prepended to the urls of the remote calls.
baseUrl: 'http://localhost/api/v0',
},
})