chore: fix pdf fonts fetching for local development (#2950) [skip e2e]

This commit is contained in:
Antonella Sgarlatta
2025-10-27 20:33:27 -03:00
parent 4c1896208f
commit 0645f78d78
2 changed files with 15 additions and 1 deletions

View File

@@ -29,6 +29,16 @@ module.exports = (env, argv) => {
devMiddleware: {
writeToDisk: argv.writeToDisk,
},
proxy: {
'/assets': {
target: 'https://assets.standardnotes.com',
changeOrigin: true,
secure: false,
pathRewrite: {
'^/assets': '',
},
},
},
},
})
}