tailwind drinne und fix. sollte nun gehen
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
import tailwindcss from "tailwindcss";
|
import tailwindcss from "npm:tailwindcss";
|
||||||
import autoprefixer from "autoprefixer";
|
import autoprefixer from "npm:autoprefixer";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
plugins: [tailwindcss, autoprefixer],
|
plugins: [tailwindcss, autoprefixer],
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
/*
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
*/
|
|
||||||
3
src/vite-env.d.ts
vendored
3
src/vite-env.d.ts
vendored
@@ -5,7 +5,8 @@ import { defineConfig } from 'vite'
|
|||||||
import vue from '@vitejs/plugin-vue'
|
import vue from '@vitejs/plugin-vue'
|
||||||
|
|
||||||
declare module '*.vue' {
|
declare module '*.vue' {
|
||||||
import type { DefineComponent } from 'vue'
|
//@ts-ignore
|
||||||
|
import type { DefineComponent } from 'npm:vue'
|
||||||
const component: DefineComponent<{}, {}, any>
|
const component: DefineComponent<{}, {}, any>
|
||||||
export default component
|
export default component
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
import { defineConfig } from 'vite'
|
//@ts-ignore
|
||||||
import deno from '@deno/vite-plugin'
|
import { defineConfig } from 'npm:vite'
|
||||||
import vue from '@vitejs/plugin-vue'
|
//@ts-ignore
|
||||||
|
import deno from 'npm:@deno/vite-plugin'
|
||||||
|
//@ts-ignore
|
||||||
|
import vue from 'npm:@vitejs/plugin-vue'
|
||||||
|
|
||||||
// https://vite.dev/config/
|
// https://vite.dev/config/
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
|
|||||||
Reference in New Issue
Block a user