Skip to content

Commit

Permalink
Add BCDS tokens to Tailwind theme
Browse files Browse the repository at this point in the history
  • Loading branch information
chrsamp committed Sep 16, 2024
1 parent 3de7e5b commit 16219cb
Show file tree
Hide file tree
Showing 6 changed files with 1,725 additions and 3,303 deletions.
8 changes: 6 additions & 2 deletions frontend/app.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<script setup lang="ts">
import '@bcgov/bc-sans/css/BC_Sans.css';
</script>

<template>
<div>
<NuxtLoadingIndicator color="#1669bb"/>
<NuxtLoadingIndicator color="#013366"/>
<NuxtPage />
</div>
</template>
</template>
18 changes: 9 additions & 9 deletions frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import path from 'path';

export default defineNuxtConfig({
ssr: false,
ssr: false,
devServer: {
port: 8080,
},
app: {
head: {
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
title: 'BC Services: Queue Management',
title: 'Service BC Queue Management System',
},
baseURL: '/',
},
Expand All @@ -21,27 +21,27 @@ export default defineNuxtConfig({
include: ['pinia'],
},
resolve: {
dedupe: ['vue'],
dedupe: ['vue'],
},
},

plugins: [],
components: true,
plugins: [],
components: true,

buildModules: [
'@nuxt/typescript-build', // TypeScript support
],

modules: [
'@nuxt/ui',
'@nuxt/ui',
'@nuxt/content',
'@pinia/nuxt',
'@nuxtjs/tailwindcss',
'@nuxt/test-utils/module'
],

build: {
transpile: ['@pinia', 'pinia'],
transpile: ['@pinia', 'pinia'],
postcss: {
plugins: {
tailwindcss: {},
Expand All @@ -61,5 +61,5 @@ export default defineNuxtConfig({
},
},

compatibilityDate: '2024-08-16',
});
compatibilityDate: '2024-08-16',
});
Loading

0 comments on commit 16219cb

Please sign in to comment.