From 535d5894bc79a754cffac6a9c2b51fdab80dba8e Mon Sep 17 00:00:00 2001 From: ThePain Date: Wed, 8 May 2024 15:22:38 +0000 Subject: [PATCH] Dateien nach "/" hochladen --- tailwind.config.js | 10 ++++++++++ vue.config.js | 8 ++++++++ 2 files changed, 18 insertions(+) create mode 100644 tailwind.config.js create mode 100644 vue.config.js diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..cb3c27c --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + darkModen: "class", + content: [], + theme: { + extend: {}, + }, + plugins: [], +} + diff --git a/vue.config.js b/vue.config.js new file mode 100644 index 0000000..262a90d --- /dev/null +++ b/vue.config.js @@ -0,0 +1,8 @@ +const { defineConfig } = require('@vue/cli-service') +module.exports = defineConfig({ + transpileDependencies: true +}) + +module.exports = { + publicPath: '' +}