mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-21 15:27:53 +00:00
17 lines
387 B
JavaScript
17 lines
387 B
JavaScript
import { resolve } from 'path'
|
|
|
|
import base from './nuxt.config.base.js'
|
|
|
|
export default Object.assign({}, base(), {
|
|
rootDir: resolve(__dirname, '../'),
|
|
css: [],
|
|
dev: false,
|
|
debug: false,
|
|
env: {
|
|
PRIVATE_BACKEND_URL: 'http://localhost',
|
|
PUBLIC_BACKEND_URL: 'http://localhost',
|
|
PUBLIC_WEB_FRONTEND_URL: 'http://localhost',
|
|
INITIAL_TABLE_DATA_LIMIT: null,
|
|
},
|
|
})
|