hub-site/wip-refactor/nuxt.config.ts
mrrpnya c2095d0b13
Some checks failed
Testing / test (pull_request) Has been cancelled
Testing / test (push) Waiting to run
Publish to OCI Registry / publish (push) Has been cancelled
.
2025-03-05 22:34:37 -08:00

30 lines
798 B
TypeScript

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