Initial commit 🚀

This commit is contained in:
2020-10-25 19:18:48 +01:00
parent 96092b2b42
commit 9933439ee8
60 changed files with 13639 additions and 30 deletions

47
nuxt.config.js Normal file
View File

@@ -0,0 +1,47 @@
import { Axios, Head } from './config'
export default {
head: Head,
server: {
host: '0.0.0.0',
port: 3333
},
css: [
],
plugins: [
],
components: true,
buildModules: [
'@nuxt/typescript-build',
'@nuxtjs/tailwindcss',
],
modules: [
['@nuxtjs/axios', Axios],
],
buildDir: 'build',
srcDir: 'src',
dir: {
assets: 'assets',
layouts: 'templates/layouts',
middleware: 'middleware',
pages: 'templates/pages',
static: 'public',
store: 'store',
},
build: {},
pageTransition: {
name: 'page',
mode: 'out-in',
},
}