.
This commit is contained in:
parent
36576a27f3
commit
c2095d0b13
29 changed files with 5941 additions and 0 deletions
30
wip-refactor/nuxt.config.ts
Normal file
30
wip-refactor/nuxt.config.ts
Normal file
|
@ -0,0 +1,30 @@
|
|||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2024-11-01',
|
||||
devtools: { enabled: true },
|
||||
css: ['~/assets/css/main.css'],
|
||||
ssr: false,
|
||||
postcss: {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
},
|
||||
routeRules: {
|
||||
"/web/access/smgames.club/**": {
|
||||
proxy: {to: "https://smgames.club"}
|
||||
},
|
||||
"/web/access/git.smgames.club/**": {
|
||||
proxy: {to: "https://git.smgames.club"}
|
||||
},
|
||||
"/web/access/services.smgames.club/**": {
|
||||
proxy: {to: "https://services.smgames.club"}
|
||||
},
|
||||
"/web/access/captcha.smgames.club/**": {
|
||||
proxy: {to: "https://captcha.smgames.club"}
|
||||
},
|
||||
"/web/access/social.smgames.club/**": {
|
||||
proxy: {to: "https://social.smgames.club"}
|
||||
}
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue