mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-09-02 20:21:19 +02:00
23 lines
598 B
JavaScript
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,
|
|
},
|
|
};
|