mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
* feat: small refactor * fix: appimage build script * fix: add NO_STRIP to AppImage build * fix: build and dev mode from refactor * fix: submodule step 1 * fix: submodules step 2
22 lines
336 B
TypeScript
22 lines
336 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: [["../libs/drop-base"]],
|
|
|
|
app: {
|
|
baseURL: "/main",
|
|
}
|
|
});
|