34 lines
819 B
JavaScript
34 lines
819 B
JavaScript
"use strict";Object.defineProperty(exports, "__esModule", { value: true });exports.default = void 0; // Nuxt 3 + Quasar + Tailwind + TypeScript
|
|
var _default = exports.default = defineNuxtConfig({
|
|
modules: ["nuxt-quasar-ui", "@nuxtjs/tailwindcss"],
|
|
css: ["~/assets/css/main.css"],
|
|
typescript: {
|
|
strict: true
|
|
},
|
|
quasar: {
|
|
plugins: ["Notify"],
|
|
config: {
|
|
brand: {
|
|
primary: "#4b82f7",
|
|
secondary: "#2f5ed7",
|
|
accent: "#44d4a8",
|
|
dark: "#0f1827"
|
|
}
|
|
}
|
|
},
|
|
components: [
|
|
{
|
|
path: '~/components',
|
|
pathPrefix: false
|
|
}],
|
|
|
|
app: {
|
|
head: {
|
|
htmlAttrs: {
|
|
class: 'dark'
|
|
},
|
|
title: "E-Learning System",
|
|
meta: [{ name: "viewport", content: "width=device-width, initial-scale=1" }]
|
|
}
|
|
}
|
|
}); /* v9-e7efda60df982f79 */
|