Files
notesnook/apps/mobile/html/tinymce/configuration/environment.js
2021-10-01 11:57:50 +05:00

23 lines
598 B
JavaScript

const path = require('path');
module.exports = {
paths: {
/* Path to source files directory */
source: path.resolve(__dirname, '../src/'),
/* Path to built files directory */
output: path.resolve(__dirname, '../../Web.bundle/site/dist/'),
},
server: {
host: 'localhost',
port: 8000,
},
limits: {
/* Image files size in bytes. Below this value the image file will be served as DataURL (inline base64). */
images: 8192,
/* Font files size in bytes. Below this value the font file will be served as DataURL (inline base64). */
fonts: 8192,
},
};