diff --git a/.inscode b/.inscode index 70c7853df0c162981ebd7cf119d909c807920531..9fec9576d482baaf90d2f47230ce9133cfce99d4 100644 --- a/.inscode +++ b/.inscode @@ -1,4 +1,5 @@ run = "npm i && npm run dev" +language = "node" [deployment] build = "npm i && npm run build" @@ -8,3 +9,6 @@ run = "npm run preview" PATH = "/root/${PROJECT_DIR}/.config/npm/node_global/bin:/root/${PROJECT_DIR}/node_modules/.bin:${PATH}" XDG_CONFIG_HOME = "/root/.config" npm_config_prefix = "/root/${PROJECT_DIR}/.config/npm/node_global" + +[debugger] +program = "main.js" diff --git a/package.json b/package.json index aa1c7deb0adb6e6aea5a1380426189ac24eee7a7..31a636717d02230b7f53f289df61c6c133e59e7b 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,9 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^3.0.1", + "autoprefixer": "^10.4.16", + "postcss": "^8.4.33", + "tailwindcss": "^3.4.1", "vite": "^3.0.1" } } diff --git a/src/App.vue b/src/App.vue index 633a5dfe4e547c48bfa93740a290ba5ba370930a..783ac1038d0865414383b692befc92b7e1caa121 100644 --- a/src/App.vue +++ b/src/App.vue @@ -7,7 +7,10 @@ import TheWelcome from './components/TheWelcome.vue'
-
+
+

+ Hello world! +

diff --git a/src/main.js b/src/main.js index 90e6400b4d8ad8aba0c1caa53874eb4b81380648..67ad52a5d4ea45c92a3533438beceae5dd737cec 100644 --- a/src/main.js +++ b/src/main.js @@ -1,6 +1,8 @@ import { createApp } from 'vue' import App from './App.vue' -import './assets/main.css' +import './style.css' + +// import './assets/main.css' createApp(App).mount('#app') diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000000000000000000000000000000000000..bd6213e1dfe6b0a79ce7d8b37d0d2dc70f0250bb --- /dev/null +++ b/src/style.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000000000000000000000000000000000000..ff48818cbe8639b10e036feefb2a11415a2d50ed --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,11 @@ +/** @type {import('tailwindcss').Config} */ +export default { + content: [ + "./index.html", + "./src/**/*.{vue,js,ts,jsx,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +} \ No newline at end of file