mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 19:06:39 +00:00
16 lines
257 B
JavaScript
16 lines
257 B
JavaScript
import theme from '@nuxt/content-theme-docs'
|
|
import path from 'path'
|
|
|
|
export default theme({
|
|
docs: {
|
|
primaryColor: '#4351e8'
|
|
},
|
|
css: [
|
|
"./assets/main.css"
|
|
],
|
|
plugins: [
|
|
{src: path.join(__dirname, 'plugins','nc.js'), ssr:false}
|
|
]
|
|
})
|
|
|