Initial commit - realms platform
This commit is contained in:
parent
c590ab6d18
commit
c717c3751c
234 changed files with 74103 additions and 15231 deletions
|
|
@ -5,6 +5,18 @@ export default defineConfig({
|
|||
plugins: [sveltekit()],
|
||||
server: {
|
||||
port: 3000,
|
||||
host: true
|
||||
host: true,
|
||||
proxy: {
|
||||
// Proxy uploads to openresty for dev mode
|
||||
'/uploads': {
|
||||
target: 'http://localhost:80',
|
||||
changeOrigin: true
|
||||
},
|
||||
// Proxy thumbnails to openresty
|
||||
'/thumb': {
|
||||
target: 'http://localhost:80',
|
||||
changeOrigin: true
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue