rework structure

This commit is contained in:
2020-12-04 11:11:34 +01:00
parent d3e6216edf
commit 79fa8739dc
41 changed files with 7 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import "./style.scss"; @import "style.scss";
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;

View File

Before

Width:  |  Height:  |  Size: 7.6 KiB

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

Before

Width:  |  Height:  |  Size: 185 KiB

After

Width:  |  Height:  |  Size: 185 KiB

View File

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 186 KiB

View File

Before

Width:  |  Height:  |  Size: 228 B

After

Width:  |  Height:  |  Size: 228 B

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 573 B

View File

Before

Width:  |  Height:  |  Size: 702 B

After

Width:  |  Height:  |  Size: 702 B

View File

@@ -1,7 +1,7 @@
export default { export default {
authtoken: process.env.NGROK_AUTHTOKEN, authtoken: process.env.NGROK_AUTHTOKEN,
auth: process.env.NGROK_AUTH_USER + ':' + process.env.NGROK_AUTH_PASS,
region: 'eu', region: 'eu',
addr: process.env.NGROK_PORT, addr: process.env.NGROK_PORT,
proto: 'http', proto: 'http',
subdomain: 'artsite'
} }

View File

@@ -1,5 +1,5 @@
import axios from "axios"; import axios from "axios";
import {Axios} from "../../config"; import {Axios} from "../config";
export default async function () { export default async function () {
let informations = {} let informations = {}

View File

@@ -1,5 +1,5 @@
import axios from "axios"; import axios from "axios";
import {Axios} from "../../config"; import {Axios} from "../config";
export default async function () { export default async function () {
let informations = {} let informations = {}

View File

@@ -1,4 +1,4 @@
import { Axios, Head, ColorMode, Tailwind, Translation } from './config' import { Axios, Head, ColorMode, Tailwind, Translation, Ngrok } from './config'
export default { export default {
head: Head, head: Head,
@@ -20,6 +20,7 @@ export default {
'@nuxt/typescript-build', '@nuxt/typescript-build',
['@nuxtjs/tailwindcss', Tailwind], ['@nuxtjs/tailwindcss', Tailwind],
['@nuxtjs/color-mode', ColorMode], ['@nuxtjs/color-mode', ColorMode],
['@nuxtjs/ngrok', Ngrok]
], ],
modules: [ modules: [
@@ -28,15 +29,6 @@ export default {
], ],
buildDir: 'build', buildDir: 'build',
srcDir: 'src',
dir: {
assets: 'assets',
layouts: 'templates/layouts',
middleware: 'middleware',
pages: 'templates/pages',
static: 'public',
store: 'store',
},
build: { build: {
}, },

View File

@@ -22,9 +22,7 @@
"@nuxt/types": "^2.14.6", "@nuxt/types": "^2.14.6",
"@nuxt/typescript-build": "^2.0.3", "@nuxt/typescript-build": "^2.0.3",
"@nuxtjs/color-mode": "^2.0.0", "@nuxtjs/color-mode": "^2.0.0",
"@nuxtjs/tailwindcss": "^3.3.1",
"autoprefixer": "9", "autoprefixer": "9",
"postcss": "7", "postcss": "7"
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
} }
} }

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB