1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-15 01:28:30 +00:00
bramw_baserow/web-frontend/config/nuxt.config.test.js

17 lines
371 B
JavaScript

import { resolve } from 'path'
import _ from 'lodash'
import base from './nuxt.config.base.js'
const config = {
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'
}
}
export default _.assign({}, base, config)