1 Star 23 Fork 7

ccmall/fonteditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
edp-webserver-config.js 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
kekee000 提交于 2015-04-02 16:46 . modify template
exports.port = 9999;
exports.directoryIndexes = true;
exports.documentRoot = __dirname;
exports.getLocations = function () {
return [
{
location: /\/$/,
handler: home( 'index.html' )
},
{
location: /\.css($|\?)/,
handler: [
autocss({
less: {
relativeUrls: false
}
})
]
},
{
location: /\.less($|\?)/,
handler: [
file(),
less()
]
},
{
location: /\.tpl\.js/,
handler: [
html2js({
wrap: true,
mode: 'default'
})
]
},
{
location: /^.*$/,
handler: [
file(),
proxyNoneExists()
]
}
];
};
exports.injectResource = function ( res ) {
for ( var key in res ) {
global[ key ] = res[ key ];
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/635050/fonteditor.git
[email protected]:635050/fonteditor.git
635050
fonteditor
fonteditor
master

搜索帮助