forked from Drop-OSS/archived-drop-app
18 lines
308 B
TypeScript
18 lines
308 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,
|
|
|
|
extends: [["github:drop-oss/drop-base"]],
|
|
});
|