mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 00:02:41 +10:00
26 lines
360 B
TypeScript
26 lines
360 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2024-04-03",
|
|
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
|
|
ssr: false,
|
|
|
|
extends: ["../shared", "../libs/drop-base"],
|
|
|
|
app: {
|
|
baseURL: "/main",
|
|
},
|
|
|
|
devtools: {
|
|
enabled: false,
|
|
},
|
|
|
|
|
|
});
|