This commit is contained in:
2021-03-16 19:13:14 +01:00
parent ddde9a4941
commit c5decef88c
11 changed files with 679 additions and 127 deletions

View File

@@ -25,7 +25,6 @@ const pageTransition = {
const target = 'server'
const server = {
host: '0.0.0.0',
port: 3333
}

View File

@@ -6,11 +6,18 @@ const color_mode = {
classSuffix: '',
}
const tailwindcss = {
cssPath: './assets/css/tailwind.css',
configPath: 'tailwind.config.js',
exposeConfig: true,
jit: true
}
export default [
'@nuxt/typescript-build',
'@nuxtjs/composition-api',
'@nuxt/postcss8',
'nuxt-windicss',
['@nuxtjs/tailwindcss', tailwindcss],
'nuxt-vite',
['@nuxtjs/color-mode', color_mode],
]