.
Some checks failed
Publish to OCI Registry / publish (push) Has been cancelled
Testing / test (pull_request) Has been cancelled
Testing / test (push) Waiting to run

This commit is contained in:
Mrrp 2025-03-05 22:34:37 -08:00
parent 36576a27f3
commit c2095d0b13
29 changed files with 5941 additions and 0 deletions

View 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"}
}
}
})