move interface to src/ folder

This commit is contained in:
SethBurkart123
2023-12-20 13:08:31 +11:00
parent 378a983bf5
commit ebb8ddbaf0
40 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
}, },
"action": { "action": {
"browser_style": true, "browser_style": true,
"default_popup": "interface/index.html#settings", "default_popup": "src/interface/index.html#settings",
"default_icon": { "default_icon": {
"32": "icons/icon-32.png", "32": "icons/icon-32.png",
"48": "icons/icon-48.png", "48": "icons/icon-48.png",

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Before

Width:  |  Height:  |  Size: 591 KiB

After

Width:  |  Height:  |  Size: 591 KiB

View File
+1 -2
View File
@@ -1,8 +1,7 @@
/** @type {import('tailwindcss').Config} */ /** @type {import('tailwindcss').Config} */
export default { export default {
content: [ content: [
"./interface/index.html", "./src/**/*.{js,ts,jsx,tsx,html}",
"./interface/**/*.{js,ts,jsx,tsx}",
], ],
darkMode: "class", darkMode: "class",
theme: { theme: {
+1 -1
View File
@@ -1,5 +1,5 @@
import { defineConfig } from 'vite'
import { crx } from '@crxjs/vite-plugin' import { crx } from '@crxjs/vite-plugin'
import { defineConfig } from 'vite'
import manifest from './manifest.json' import manifest from './manifest.json'
export default defineConfig({ export default defineConfig({