Skip to content

Commit

Permalink
fix: popup
Browse files Browse the repository at this point in the history
  • Loading branch information
Joabesv committed Nov 17, 2024
1 parent ce61d05 commit c608177
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 22.11.0
nodejs latest
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"version": "2.0.0",
"description": "Adiciona funcionalidades novas em sistemas da UFABC",
"engines": {
"node": "^22"
"node": ">22"
},
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
Expand All @@ -14,7 +15,7 @@
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "vue-tsc --noEmit",
"postinstall": "wxt prepare",
"postinstall": "wxt prepare",
"fmt": "biome format ./src --write",
"lint": "biome lint ./src"
},
Expand Down
7 changes: 6 additions & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
module.exports = {};
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
2 changes: 1 addition & 1 deletion src/assets/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
3 changes: 1 addition & 2 deletions src/entrypoints/popup/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { createApp } from 'vue';
import App from './App.vue';
import "~/assets/tailwind.css";

import '~/assets/tailwind.css';

createApp(App).mount('#app');
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
13 changes: 6 additions & 7 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ["entrypoints/**/*.{vue, ts}"],
theme: {
extend: {},
},
plugins: [],
}

content: ['src/assets/**', 'src/entrypoints/**', 'src/components/**'],
theme: {
extend: {},
},
plugins: [],
};

0 comments on commit c608177

Please sign in to comment.