- Refactored Pattern Composer UI with new tabs (Specs, Draft, Read, Shelf). - Added support for multiple Yarns and Hooks with integrated color pickers. - Improved Step drafting UX: reordered list/editor, added inline actions. - Fixed Database Backup/Restore: switched to SQL dump/restore for robustness. - Improved Image Uploads: added WebP optimization (with fallback) and preview display. - Updated local dev setup: added live-server proxy config and concurrently script.
15 lines
320 B
JavaScript
15 lines
320 B
JavaScript
var liveServer = require("live-server");
|
|
|
|
var params = {
|
|
port: 8080,
|
|
host: "0.0.0.0",
|
|
ignore: 'db_data,server/uploads',
|
|
file: "index.html",
|
|
wait: 500,
|
|
proxy: [
|
|
['/api', 'http://127.0.0.1:4000/api'],
|
|
['/uploads', 'http://127.0.0.1:4000/uploads']
|
|
]
|
|
};
|
|
|
|
liveServer.start(params); |