rework structure
@@ -1,5 +1,5 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
|
||||
@import "./style.scss";
|
||||
@import "style.scss";
|
||||
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 185 KiB After Width: | Height: | Size: 185 KiB |
|
Before Width: | Height: | Size: 186 KiB After Width: | Height: | Size: 186 KiB |
|
Before Width: | Height: | Size: 228 B After Width: | Height: | Size: 228 B |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 573 B After Width: | Height: | Size: 573 B |
|
Before Width: | Height: | Size: 702 B After Width: | Height: | Size: 702 B |
@@ -1,7 +1,7 @@
|
||||
export default {
|
||||
authtoken: process.env.NGROK_AUTHTOKEN,
|
||||
auth: process.env.NGROK_AUTH_USER + ':' + process.env.NGROK_AUTH_PASS,
|
||||
region: 'eu',
|
||||
addr: process.env.NGROK_PORT,
|
||||
proto: 'http',
|
||||
subdomain: 'artsite'
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import axios from "axios";
|
||||
import {Axios} from "../../config";
|
||||
import {Axios} from "../config";
|
||||
|
||||
export default async function () {
|
||||
let informations = {}
|
||||
@@ -1,5 +1,5 @@
|
||||
import axios from "axios";
|
||||
import {Axios} from "../../config";
|
||||
import {Axios} from "../config";
|
||||
|
||||
export default async function () {
|
||||
let informations = {}
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Axios, Head, ColorMode, Tailwind, Translation } from './config'
|
||||
import { Axios, Head, ColorMode, Tailwind, Translation, Ngrok } from './config'
|
||||
|
||||
export default {
|
||||
head: Head,
|
||||
@@ -20,6 +20,7 @@ export default {
|
||||
'@nuxt/typescript-build',
|
||||
['@nuxtjs/tailwindcss', Tailwind],
|
||||
['@nuxtjs/color-mode', ColorMode],
|
||||
['@nuxtjs/ngrok', Ngrok]
|
||||
],
|
||||
|
||||
modules: [
|
||||
@@ -28,15 +29,6 @@ export default {
|
||||
],
|
||||
|
||||
buildDir: 'build',
|
||||
srcDir: 'src',
|
||||
dir: {
|
||||
assets: 'assets',
|
||||
layouts: 'templates/layouts',
|
||||
middleware: 'middleware',
|
||||
pages: 'templates/pages',
|
||||
static: 'public',
|
||||
store: 'store',
|
||||
},
|
||||
|
||||
build: {
|
||||
},
|
||||
|
||||
@@ -22,9 +22,7 @@
|
||||
"@nuxt/types": "^2.14.6",
|
||||
"@nuxt/typescript-build": "^2.0.3",
|
||||
"@nuxtjs/color-mode": "^2.0.0",
|
||||
"@nuxtjs/tailwindcss": "^3.3.1",
|
||||
"autoprefixer": "9",
|
||||
"postcss": "7",
|
||||
"tailwindcss": "npm:@tailwindcss/postcss7-compat"
|
||||
"postcss": "7"
|
||||
}
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |