mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +08:00
10 lines
265 B
JavaScript
10 lines
265 B
JavaScript
|
import path from 'path'
|
||
|
import fs from 'fs-extra'
|
||
|
import config from '../config.js'
|
||
|
|
||
|
let configPath = path.join(path.resolve(__dirname, '../../'), 'runtime', 'config.json')
|
||
|
|
||
|
fs.writeFileSync(configPath,
|
||
|
JSON.stringify(config, null, "\t"),
|
||
|
{encoding: 'utf8'}
|
||
|
)
|