Trying a server deploy target with vercel

This commit is contained in:
2020-08-02 08:51:00 +01:00
parent 0c7000ba09
commit 05b0a7ce82
3 changed files with 12 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ export default {
** Nuxt target
** See https://nuxtjs.org/api/configuration-target
*/
target: 'static',
target: 'server',
/*
** Headers of the page
** See https://nuxtjs.org/api/configuration-head

View File

@@ -1,4 +1,9 @@
<template>
<div class="h-screen w-screen bg-primary">
<div class="w-full md:w-1/2 bg-secondary ">
</div>
</div>
</template>
<script lang="ts">

View File

@@ -29,6 +29,12 @@ module.exports = {
black: '#000',
white: '#fff',
primary: '#CCDBDC',
secondary: '#80CED7',
ternary: '#63C7B2',
fourth: '#8E6C88',
fifth: '#263D42',
gray: {
100: '#f7fafc',
200: '#edf2f7',