bad84289c4
Features:
- Rust support 🦀 (Thanks to @pepoviola)
- Add a default rewrite rule to PHP apps (to index.php)
- Able to control upgrades in a straightforward way
Fixes:
- Improved upgrade scripts
- Simplified prechecks before deployment
- Fixed path deployments
- Fixed already defined apps redirections
- Better error handling - still needs a lot of improvement here!
37 lines
736 B
JavaScript
37 lines
736 B
JavaScript
module.exports = {
|
|
alias: {
|
|
'@store': '/src/store.js'
|
|
// '/@components/': path.resolve(__dirname, '/src/components'),
|
|
},
|
|
optimizeDeps: {
|
|
exclude: [
|
|
'@roxi/routify',
|
|
'fastify-static',
|
|
'fastify',
|
|
'fastify-autoload',
|
|
'fastify-jwt',
|
|
'dotenv',
|
|
'dotenv-extended',
|
|
'commander',
|
|
'axios',
|
|
'fastify-env',
|
|
'fastify-plugin',
|
|
'mongoose',
|
|
'js-yaml',
|
|
'shelljs',
|
|
'jsonwebtoken',
|
|
'deepmerge',
|
|
'dockerode',
|
|
'dayjs',
|
|
'@zerodevx/svelte-toast',
|
|
'mongodb-memory-server-core',
|
|
'unique-names-generator',
|
|
'generate-password',
|
|
'@iarna/toml'
|
|
]
|
|
},
|
|
proxy: {
|
|
'/api': 'http://127.0.0.1:3001/'
|
|
}
|
|
}
|