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