mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +08:00
4 lines
181 B
JavaScript
4 lines
181 B
JavaScript
const fs = require('fs');
|
|
const sysPath = require('path');
|
|
const css = fs.readFileSync(sysPath.join(__dirname, './defaultTheme.css'));
|
|
module.exports = '<style>' + css + '</style>'; |