// export const host = 'http://192.168.50.20:8081';
// export const host = "http://localhost:8091";
export const debug = process.env.NODE_ENV !== 'production';

export const editorDefaultSet = {
    menus: [
      "head", // 标题
      "bold", // 粗体
      "fontSize", // 字号
      "fontName",
      "underline",
      "strikeThrough",
      "indent",
      "lineHeight", // 行高
      "foreColor", // 文字颜色
      "backColor", // 背景颜色
      "list", // 列表
      "quote",
      "emoticon",
      "justify", // 对齐方式
      "undo", // 撤销
      "redo" // 重复
    ],
    fontNames: [
        '黑体',
        '仿宋',
        '楷体',
        '标楷体',
        '华文仿宋',
        '华文楷体',
        '宋体',
        '微软雅黑',
        'Arial',
        'Tahoma',
        'Verdana',
    ],
    height: 400
    // uploadImgServer: "/source/srp/source/attachment/upload",
    // showLinkImg: false,
    // uploadFileName: "file",
    // uploadImgHooks: {
    //   success: function(xhr, editor, result) {},
    //   error: function(xhr, editor) {},
    //   customInsert: function(insertImg, result, editor) {
    //     insertImg(result.t.url);
    //   }
    // }
  };