Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
43
Frontend-Learner/nuxt.config.ts
Normal file
43
Frontend-Learner/nuxt.config.ts
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
// Nuxt 3 + Quasar + Tailwind + TypeScript
|
||||
// Configuration for E-Learning Platform
|
||||
export 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: {
|
||||
lang: 'th',
|
||||
},
|
||||
title: "E-Learning System",
|
||||
meta: [
|
||||
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
||||
],
|
||||
link: [
|
||||
{
|
||||
rel: "stylesheet",
|
||||
href: "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Prompt:wght@300;400;500;600;700;800;900&family=Sarabun:wght@300;400;500;600;700;800&display=swap",
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue